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

Side by Side Diff: test/dart_codegen/expect/core/core

Issue 961493003: don't run dart gen on JS patch code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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/dart_codegen/expect/core/bool.dart ('k') | test/dart_codegen/expect/core/date_time.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.core; 1 library dart.core;
2 2
3 import 'dart:collection' as DDC$collection$; 3 import 'dart:collection' as DDC$collection$;
4 import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DDC$RT; 4 import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DDC$RT;
5 import "dart:collection"; 5 import "dart:collection";
6 import "dart:_internal" hide Symbol; 6 import "dart:_internal" hide Symbol;
7 import "dart:_internal" as internal show Symbol; 7 import "dart:_internal" as internal show Symbol;
8 import "dart:convert" show UTF8, LATIN1, Encoding; 8 import "dart:convert" show UTF8, LATIN1, Encoding;
9 import "dart:math" show Random; 9 import "dart:math" show Random;
10 import "dart:_internal" as _symbol_dev;
11 part "annotations.dart"; 10 part "annotations.dart";
12 part "bool.dart"; 11 part "bool.dart";
13 part "comparable.dart"; 12 part "comparable.dart";
14 part "date_time.dart"; 13 part "date_time.dart";
15 part "double.dart"; 14 part "double.dart";
16 part "duration.dart"; 15 part "duration.dart";
17 part "errors.dart"; 16 part "errors.dart";
18 part "exceptions.dart"; 17 part "exceptions.dart";
19 part "expando.dart"; 18 part "expando.dart";
20 part "function.dart"; 19 part "function.dart";
(...skipping 13 matching lines...) Expand all
34 part "set.dart"; 33 part "set.dart";
35 part "sink.dart"; 34 part "sink.dart";
36 part "stacktrace.dart"; 35 part "stacktrace.dart";
37 part "stopwatch.dart"; 36 part "stopwatch.dart";
38 part "string.dart"; 37 part "string.dart";
39 part "string_buffer.dart"; 38 part "string_buffer.dart";
40 part "string_sink.dart"; 39 part "string_sink.dart";
41 part "symbol.dart"; 40 part "symbol.dart";
42 part "type.dart"; 41 part "type.dart";
43 part "uri.dart"; 42 part "uri.dart";
44
45 String _symbolToString(Symbol symbol) => _symbol_dev.Symbol.getName(DDC$RT.cast(
46 symbol, Symbol, Symbol, "CastGeneral",
47 """line 196, column 69 of dart:core: """, symbol is Symbol, true));
48 _symbolMapToStringMap(Map<Symbol, dynamic> map) {
49 if (map == null) return null;
50 var result = new Map<String, dynamic>();
51 map.forEach((Symbol key, value) {
52 result[_symbolToString(key)] = value;
53 });
54 return result;
55 }
56 class _ListConstructorSentinel extends JSInt {
57 const _ListConstructorSentinel();
58 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/core/bool.dart ('k') | test/dart_codegen/expect/core/date_time.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698