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

Side by Side Diff: lib/runtime/dart/_js_helper.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Address comments 2 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_embedded_names.js ('k') | lib/runtime/dart/_js_primitives.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart.library('dart/_js_helper', null, /* Imports */[ 1 dart_library.library('dart/_js_helper', null, /* Imports */[
2 "dart_runtime/dart",
2 'dart/core', 3 'dart/core',
3 'dart/collection', 4 'dart/collection',
4 'dart/_interceptors', 5 'dart/_interceptors',
5 'dart/_foreign_helper' 6 'dart/_foreign_helper'
6 ], /* Lazy imports */[ 7 ], /* Lazy imports */[
7 ], function(exports, core, collection, _interceptors, _foreign_helper) { 8 ], function(exports, dart, core, collection, _interceptors, _foreign_helper) {
8 'use strict'; 9 'use strict';
10 let dartx = dart.dartx;
9 class NoThrows extends core.Object { 11 class NoThrows extends core.Object {
10 NoThrows() { 12 NoThrows() {
11 } 13 }
12 } 14 }
13 dart.setSignature(NoThrows, { 15 dart.setSignature(NoThrows, {
14 constructors: () => ({NoThrows: [NoThrows, []]}) 16 constructors: () => ({NoThrows: [NoThrows, []]})
15 }); 17 });
16 class NoInline extends core.Object { 18 class NoInline extends core.Object {
17 NoInline() { 19 NoInline() {
18 } 20 }
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 exports.Returns = Returns; 1195 exports.Returns = Returns;
1194 exports.JSName = JSName; 1196 exports.JSName = JSName;
1195 exports.JavaScriptIndexingBehavior = JavaScriptIndexingBehavior; 1197 exports.JavaScriptIndexingBehavior = JavaScriptIndexingBehavior;
1196 exports.TypeErrorImplementation = TypeErrorImplementation; 1198 exports.TypeErrorImplementation = TypeErrorImplementation;
1197 exports.CastErrorImplementation = CastErrorImplementation; 1199 exports.CastErrorImplementation = CastErrorImplementation;
1198 exports.FallThroughErrorImplementation = FallThroughErrorImplementation; 1200 exports.FallThroughErrorImplementation = FallThroughErrorImplementation;
1199 exports.RuntimeError = RuntimeError; 1201 exports.RuntimeError = RuntimeError;
1200 exports.random64 = random64; 1202 exports.random64 = random64;
1201 exports.jsonEncodeNative = jsonEncodeNative; 1203 exports.jsonEncodeNative = jsonEncodeNative;
1202 }); 1204 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_js_embedded_names.js ('k') | lib/runtime/dart/_js_primitives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698