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

Unified Diff: tests/language/parameter_initializer6_negative_test.dart

Issue 10541095: Disallow underscores in named formal parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: # Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/language/parameter_initializer_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/parameter_initializer6_negative_test.dart
diff --git a/tests/language/parameter_initializer6_negative_test.dart b/tests/language/parameter_initializer6_negative_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..840fd659547fd71aa9d2ad4ec34e332c7918ea0e
--- /dev/null
+++ b/tests/language/parameter_initializer6_negative_test.dart
@@ -0,0 +1,19 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// It is a compile-time error if a named formal parameter begins with an '_'
+
+class Foo {
+ num _y;
+ Foo.optional_private([this._y = 77]) {}
+}
+
+main() {
+ var obj;
+ obj = new Foo.optional_private(_y: 222);
+ Expect.equals(222, obj._y);
+
+ obj = new Foo.optional_private();
+ Expect.equals(77, obj._y);
+}
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/language/parameter_initializer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698