Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: tests/language/syntax_test.dart

Issue 15496005: Fix some of the negative language tests in preparation for implementing (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/language/non_const_super_negative_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // VMOptions=--compile_all
4 5
5 class SyntaxTest { 6 class SyntaxTest {
6 // "this" cannot be used as a field name. 7 // "this" cannot be used as a field name.
7 SyntaxTest this; /// 01: compile-time error 8 SyntaxTest this; /// 01: compile-time error
8 9
9 // Syntax error. 10 // Syntax error.
10 foo {} /// 02: compile-time error 11 foo {} /// 02: compile-time error
11 12
12 // Syntax error. 13 // Syntax error.
13 static foo {} /// 03: compile-time error 14 static foo {} /// 03: compile-time error
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 240
240 } catch (ex) { 241 } catch (ex) {
241 // Swallowing exceptions. Any error should be a compile-time error 242 // Swallowing exceptions. Any error should be a compile-time error
242 // which kills the current isolate. 243 // which kills the current isolate.
243 } 244 }
244 } 245 }
245 246
246 class Bad { 247 class Bad {
247 factory Bad<Bad(String type) { return null; } /// 63: compile-time error 248 factory Bad<Bad(String type) { return null; } /// 63: compile-time error
248 } 249 }
OLDNEW
« no previous file with comments | « tests/language/non_const_super_negative_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698