Revision f230a1cf deps/v8/test/preparser/strict-identifiers.pyt

View differences:

deps/v8/test/preparser/strict-identifiers.pyt
147 147
""")
148 148

  
149 149
break_normal = Template("break-normal-$id", """
150
  for (;;) {
150
  $id: for (;false;) {
151 151
    break $id;
152 152
  }
153 153
""")
154 154

  
155 155
break_strict = StrictTemplate("break-strict-$id", """
156
  for (;;) {
156
  $id: for (;false;) {
157 157
    break $id;
158 158
  }
159 159
""")
160 160

  
161 161
continue_normal = Template("continue-normal-$id", """
162
  for (;;) {
162
  $id: for (;false;) {
163 163
    continue $id;
164 164
  }
165 165
""")
166 166

  
167 167
continue_strict = StrictTemplate("continue-strict-$id", """
168
  for (;;) {
168
  $id: for (;false;) {
169 169
    continue $id;
170 170
  }
171 171
""")

Also available in: Unified diff