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

Unified Diff: test/codegen/temps.dart

Issue 1988503002: Move generated files to gen/. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Revise. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/syncstar_syntax.dart ('k') | test/codegen/try_catch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/temps.dart
diff --git a/test/codegen/temps.dart b/test/codegen/temps.dart
deleted file mode 100644
index cedd38bb0ee9dfff97a10f63bff496647766a728..0000000000000000000000000000000000000000
--- a/test/codegen/temps.dart
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2015, 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.
-
-class FormalCollision {
- // These shouldn't collide (see issue #136)
- int _x, __x;
- // This shouldn't generate a keyword as an identifier.
- Function _function;
- FormalCollision(this._x, this.__x, this._function);
-}
-
-class OptionalArg {
- int opt, _opt;
- OptionalArg([this._opt = 123]);
- OptionalArg.named({this.opt: 456});
-}
-
-main() {
- print(new FormalCollision(1, 2, (x) => x));
- print(new OptionalArg()._opt);
- print(new OptionalArg.named()._opt);
-}
« no previous file with comments | « test/codegen/syncstar_syntax.dart ('k') | test/codegen/try_catch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698