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

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

Issue 1243503007: fixes #221, initial sync*, async, async* implementation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 4 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/async_helper/async_helper.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('dom', window, /* Imports */[ 1 dart_library.library('dom/dom', window, /* Imports */[
2 "dart_runtime/dart", 2 "dart_runtime/dart",
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 JsName extends core.Object { 8 class JsName extends core.Object {
9 JsName(opts) { 9 JsName(opts) {
10 let name = opts && 'name' in opts ? opts.name : null; 10 let name = opts && 'name' in opts ? opts.name : null;
11 this.name = name; 11 this.name = name;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 exports.HTMLCollection = HTMLCollection; 57 exports.HTMLCollection = HTMLCollection;
58 exports.EventListener = EventListener; 58 exports.EventListener = EventListener;
59 exports.InputElement = InputElement; 59 exports.InputElement = InputElement;
60 exports.CanvasElement = CanvasElement; 60 exports.CanvasElement = CanvasElement;
61 exports.DivElement = DivElement; 61 exports.DivElement = DivElement;
62 exports.ScriptElement = ScriptElement; 62 exports.ScriptElement = ScriptElement;
63 exports.RenderingContext = RenderingContext; 63 exports.RenderingContext = RenderingContext;
64 exports.CanvasDrawingStyles = CanvasDrawingStyles; 64 exports.CanvasDrawingStyles = CanvasDrawingStyles;
65 exports.CanvasPathMethods = CanvasPathMethods; 65 exports.CanvasPathMethods = CanvasPathMethods;
66 }); 66 });
OLDNEW
« no previous file with comments | « test/codegen/expect/async_helper/async_helper.js ('k') | test/codegen/expect/expect/expect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698