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

Side by Side Diff: test/codegen/misc.dart

Issue 1142713004: fixes #184, type literals now use emitTypeName (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: another case Created 5 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
« no previous file with comments | « test/codegen/expect/misc.js ('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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 4
5 5
6 // Codegen dependency order test 6 // Codegen dependency order test
7 const UNINITIALIZED = const _Uninitialized(); 7 const UNINITIALIZED = const _Uninitialized();
8 class _Uninitialized { const _Uninitialized(); } 8 class _Uninitialized { const _Uninitialized(); }
9 9
10 class Generic<T> {
11 Type get type => Generic;
12 }
13
10 main() { 14 main() {
11 // Number literals in call expressions. 15 // Number literals in call expressions.
12 print(1.toString()); 16 print(1.toString());
13 print(1.0.toString()); 17 print(1.0.toString());
14 print(1.1.toString()); 18 print(1.1.toString());
19
20 // Type literals, #184
21 dynamic x = 42;
22 print(x == dynamic);
23 print(x == Generic);
24
25 // Should be Generic<dynamic>
26 print(new Generic<int>().type);
15 } 27 }
OLDNEW
« no previous file with comments | « test/codegen/expect/misc.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698