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

Side by Side Diff: lib/runtime/dart_runtime.js

Issue 1183033004: js_ast: implement rest/spread parsing (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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 | « lib/runtime/dart/_js_mirrors.js ('k') | lib/src/js/builder.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 // 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 dart_library.library('dart_runtime/dart', null, /* Imports */[ 5 dart_library.library('dart_runtime/dart', null, /* Imports */[
6 'dart_runtime/_classes', 6 'dart_runtime/_classes',
7 'dart_runtime/_errors', 7 'dart_runtime/_errors',
8 'dart_runtime/_operations', 8 'dart_runtime/_operations',
9 'dart_runtime/_rtti', 9 'dart_runtime/_rtti',
10 'dart_runtime/_types', 10 'dart_runtime/_types',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 exportFrom(operations, [ 66 exportFrom(operations, [
67 'JsIterator', 67 'JsIterator',
68 'arity', 68 'arity',
69 'assert', 69 'assert',
70 'const', 70 'const',
71 'dcall', 71 'dcall',
72 'dindex', 72 'dindex',
73 'dload', 73 'dload',
74 'dput', 74 'dput',
75 'dsend', 75 'dsend',
76 'dsendArray',
77 'dsetindex', 76 'dsetindex',
78 'equals', 77 'equals',
79 'hashCode', 78 'hashCode',
80 'map', 79 'map',
81 'noSuchMethod', 80 'noSuchMethod',
82 'notNull', 81 'notNull',
83 'stackTrace', 82 'stackTrace',
84 'throw_', 83 'throw_',
85 'toString', 84 'toString',
86 ]) 85 ])
(...skipping 12 matching lines...) Expand all
99 ]); 98 ]);
100 99
101 // From rtti 100 // From rtti
102 exportFrom(rtti, [ 101 exportFrom(rtti, [
103 'fn', 102 'fn',
104 'realRuntimeType', 103 'realRuntimeType',
105 'runtimeType', 104 'runtimeType',
106 ]); 105 ]);
107 106
108 }); 107 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_js_mirrors.js ('k') | lib/src/js/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698