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

Side by Side Diff: tests/compiler/dart2js/mock_compiler.dart

Issue 10942028: Support class and typedef literals as expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add a test for literals. Created 8 years, 1 month 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
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 4
5 library mock_compiler; 5 library mock_compiler;
6 6
7 import 'dart:uri'; 7 import 'dart:uri';
8 8
9 import '../../../lib/compiler/compiler.dart' as api; 9 import '../../../lib/compiler/compiler.dart' as api;
10 import '../../../lib/compiler/implementation/dart2jslib.dart' hide TreeElementMa pping; 10 import '../../../lib/compiler/implementation/dart2jslib.dart' hide TreeElementMa pping;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 hasNext(receiver) {}'''; 55 hasNext(receiver) {}''';
56 56
57 const String DEFAULT_CORELIB = r''' 57 const String DEFAULT_CORELIB = r'''
58 print(var obj) {} 58 print(var obj) {}
59 abstract class num {} 59 abstract class num {}
60 abstract class int extends num { } 60 abstract class int extends num { }
61 abstract class double extends num { } 61 abstract class double extends num { }
62 class bool {} 62 class bool {}
63 class String {} 63 class String {}
64 class Object {} 64 class Object {}
65 class Type {}
65 class Function {} 66 class Function {}
66 interface List default ListImplementation { List([length]);} 67 interface List default ListImplementation { List([length]);}
67 class ListImplementation { factory List([length]) => null; } 68 class ListImplementation { factory List([length]) => null; }
68 abstract class Map {} 69 abstract class Map {}
69 class Closure {} 70 class Closure {}
70 class Null {} 71 class Null {}
71 class Dynamic_ {} 72 class Dynamic_ {}
72 bool identical(Object a, Object b) {}'''; 73 bool identical(Object a, Object b) {}''';
73 74
74 class MockCompiler extends Compiler { 75 class MockCompiler extends Compiler {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 operator []=(Node node, Element element) { 251 operator []=(Node node, Element element) {
251 map[node] = element; 252 map[node] = element;
252 } 253 }
253 254
254 operator [](Node node) => map[node]; 255 operator [](Node node) => map[node];
255 256
256 void remove(Node node) { 257 void remove(Node node) {
257 map.remove(node); 258 map.remove(node);
258 } 259 }
259 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698