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

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

Issue 1048873002: fix arguments keyword used in our helper method (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | lib/src/codegen/js_codegen.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 var core; 1 var core;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class Object { 4 class Object {
5 constructor() { 5 constructor() {
6 var name = this.constructor.name; 6 var name = this.constructor.name;
7 var init = this[name]; 7 var init = this[name];
8 var result = void 0; 8 var result = void 0;
9 if (init) 9 if (init)
10 result = init.apply(this, arguments$); 10 result = init.apply(this, arguments);
11 return result === void 0 ? this : result; 11 return result === void 0 ? this : result;
12 } 12 }
13 ['=='](other) { 13 ['=='](other) {
14 return identical(this, other); 14 return identical(this, other);
15 } 15 }
16 get hashCode() { 16 get hashCode() {
17 return _js_helper.Primitives.objectHashCode(this); 17 return _js_helper.Primitives.objectHashCode(this);
18 } 18 }
19 toString() { 19 toString() {
20 return _js_helper.Primitives.objectToString(this); 20 return _js_helper.Primitives.objectToString(this);
(...skipping 3049 matching lines...) Expand 10 before | Expand all | Expand 10 after
3070 exports.StackTrace = StackTrace; 3070 exports.StackTrace = StackTrace;
3071 exports.Stopwatch = Stopwatch; 3071 exports.Stopwatch = Stopwatch;
3072 exports.String = String; 3072 exports.String = String;
3073 exports.RuneIterator = RuneIterator; 3073 exports.RuneIterator = RuneIterator;
3074 exports.StringBuffer = StringBuffer; 3074 exports.StringBuffer = StringBuffer;
3075 exports.StringSink = StringSink; 3075 exports.StringSink = StringSink;
3076 exports.Symbol = Symbol; 3076 exports.Symbol = Symbol;
3077 exports.Type = Type; 3077 exports.Type = Type;
3078 exports.Uri = Uri; 3078 exports.Uri = Uri;
3079 })(core || (core = {})); 3079 })(core || (core = {}));
OLDNEW
« no previous file with comments | « no previous file | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698