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

Side by Side Diff: tests/utils/dummy_compiler_test.dart

Issue 70703002: Add constructors for JSArray (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « tests/corelib/iterable_to_list_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= 4 // VMOptions=
5 // VMOptions=--print-object-histogram 5 // VMOptions=--print-object-histogram
6 6
7 // Smoke test of the dart2js compiler API. 7 // Smoke test of the dart2js compiler API.
8 library dummy_compiler; 8 library dummy_compiler;
9 9
10 import 'dart:async'; 10 import 'dart:async';
(...skipping 14 matching lines...) Expand all
25 operator==(other) {} 25 operator==(other) {}
26 get hashCode => throw 'Object.hashCode not implemented.'; 26 get hashCode => throw 'Object.hashCode not implemented.';
27 } 27 }
28 class Type {} 28 class Type {}
29 class bool {} 29 class bool {}
30 class num {} 30 class num {}
31 class int {} 31 class int {}
32 class double{} 32 class double{}
33 class String{} 33 class String{}
34 class Function{} 34 class Function{}
35 class List {} 35 class List<E> {}
36 class Map {} 36 class Map {}
37 class Closure {} 37 class Closure {}
38 class BoundClosure {} 38 class BoundClosure {}
39 class Dynamic_ {} 39 class Dynamic_ {}
40 class Null {} 40 class Null {}
41 class StackTrace {} 41 class StackTrace {}
42 class LinkedHashMap {} 42 class LinkedHashMap {}
43 identical(a, b) => true; 43 identical(a, b) => true;
44 getRuntimeTypeInfo(o) {} 44 getRuntimeTypeInfo(o) {}
45 setRuntimeTypeInfo(o, i) {} 45 setRuntimeTypeInfo(o, i) {}
46 eqNull(a) {} 46 eqNull(a) {}
47 eqNullB(a) {}"""; 47 eqNullB(a) {}""";
48 } else if (uri.path.endsWith('_patch.dart')) { 48 } else if (uri.path.endsWith('_patch.dart')) {
49 source = ''; 49 source = '';
50 } else if (uri.path.endsWith('interceptors.dart')) { 50 } else if (uri.path.endsWith('interceptors.dart')) {
51 source = """ 51 source = """
52 class Interceptor { 52 class Interceptor {
53 operator==(other) {} 53 operator==(other) {}
54 get hashCode => throw 'Interceptor.hashCode not implemented.'; 54 get hashCode => throw 'Interceptor.hashCode not implemented.';
55 } 55 }
56 class JSIndexable { 56 class JSIndexable {
57 get length; 57 get length;
58 } 58 }
59 class JSMutableIndexable {} 59 class JSMutableIndexable {}
60 class JSArray implements JSIndexable { 60 class JSArray<E> implements JSIndexable {
61 JSArray() {}
62 factory JSArray.typed(a) => a;
61 var removeLast; 63 var removeLast;
62 var add; 64 var add;
63 } 65 }
64 class JSMutableArray extends JSArray {} 66 class JSMutableArray extends JSArray {}
65 class JSFixedArray extends JSMutableArray {} 67 class JSFixedArray extends JSMutableArray {}
66 class JSExtendableArray extends JSMutableArray {} 68 class JSExtendableArray extends JSMutableArray {}
67 class JSString implements JSIndexable { 69 class JSString implements JSIndexable {
68 var split; 70 var split;
69 var concat; 71 var concat;
70 operator+(other) {} 72 operator+(other) {}
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 new Uri(scheme: 'package', path: '/'), 113 new Uri(scheme: 'package', path: '/'),
112 provider, handler); 114 provider, handler);
113 result.then((String code) { 115 result.then((String code) {
114 if (code == null) { 116 if (code == null) {
115 throw 'Compilation failed'; 117 throw 'Compilation failed';
116 } 118 }
117 }, onError: (e) { 119 }, onError: (e) {
118 throw 'Compilation failed'; 120 throw 'Compilation failed';
119 }).then(asyncSuccess); 121 }).then(asyncSuccess);
120 } 122 }
OLDNEW
« no previous file with comments | « tests/corelib/iterable_to_list_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698