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

Side by Side Diff: test/codegen/expect/expect.js

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged master Created 4 years, 11 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/codegen/expect/domtest.js ('k') | test/codegen/expect/expect/expect.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.library('expect', null, /* Imports */[ 1 dart_library.library('expect', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
3 'dart/core' 3 'dart/core'
4 ], /* Lazy imports */[ 4 ], /* Lazy imports */[
5 ], function(exports, dart, core) { 5 ], function(exports, dart, core) {
6 'use strict'; 6 'use strict';
7 let dartx = dart.dartx; 7 let dartx = dart.dartx;
8 class Expect extends core.Object { 8 class Expect extends core.Object {
9 static _truncateString(string, start, end, length) { 9 static _truncateString(string, start, end, length) {
10 if (dart.notNull(end) - dart.notNull(start) > dart.notNull(length)) { 10 if (dart.notNull(end) - dart.notNull(start) > dart.notNull(length)) {
11 end = dart.notNull(start) + dart.notNull(length); 11 end = dart.notNull(start) + dart.notNull(length);
12 } else if (dart.notNull(end) - dart.notNull(start) < dart.notNull(length)) { 12 } else if (dart.notNull(end) - dart.notNull(start) < dart.notNull(length)) {
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 dart.setSignature(AssumeDynamic, { 297 dart.setSignature(AssumeDynamic, {
298 constructors: () => ({AssumeDynamic: [AssumeDynamic, []]}) 298 constructors: () => ({AssumeDynamic: [AssumeDynamic, []]})
299 }); 299 });
300 // Exports: 300 // Exports:
301 exports.Expect = Expect; 301 exports.Expect = Expect;
302 exports.ExpectException = ExpectException; 302 exports.ExpectException = ExpectException;
303 exports.NoInline = NoInline; 303 exports.NoInline = NoInline;
304 exports.TrustTypeAnnotations = TrustTypeAnnotations; 304 exports.TrustTypeAnnotations = TrustTypeAnnotations;
305 exports.AssumeDynamic = AssumeDynamic; 305 exports.AssumeDynamic = AssumeDynamic;
306 }); 306 });
OLDNEW
« no previous file with comments | « test/codegen/expect/domtest.js ('k') | test/codegen/expect/expect/expect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698