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

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

Issue 1085723002: fixes for angular hello: String + and disable broken arg parsing (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 | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.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 var _internal; 1 var _internal;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class EfficientLength extends core.Object {} 4 class EfficientLength extends core.Object {}
5 let ListIterable$ = dart.generic(function(E) { 5 let ListIterable$ = dart.generic(function(E) {
6 class ListIterable extends collection.IterableBase$(E) { 6 class ListIterable extends collection.IterableBase$(E) {
7 ListIterable() { 7 ListIterable() {
8 super.IterableBase(); 8 super.IterableBase();
9 } 9 }
10 get [core.$iterator]() { 10 get [core.$iterator]() {
(...skipping 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after
1839 Symbol(name) { 1839 Symbol(name) {
1840 this[_name] = name; 1840 this[_name] = name;
1841 } 1841 }
1842 unvalidated(name$) { 1842 unvalidated(name$) {
1843 this[_name] = name$; 1843 this[_name] = name$;
1844 } 1844 }
1845 validated(name) { 1845 validated(name) {
1846 this[_name] = Symbol.validatePublicSymbol(name); 1846 this[_name] = Symbol.validatePublicSymbol(name);
1847 } 1847 }
1848 ['=='](other) { 1848 ['=='](other) {
1849 return dart.is(other, Symbol) && dart.notNull(dart.equals(this[_name], dar t.dload(other, _name))); 1849 return dart.is(other, Symbol) && dart.equals(this[_name], dart.dload(other , _name));
1850 } 1850 }
1851 get hashCode() { 1851 get hashCode() {
1852 let arbitraryPrime = 664597; 1852 let arbitraryPrime = 664597;
1853 return 536870911 & dart.notNull(arbitraryPrime) * dart.notNull(this[_name] .hashCode); 1853 return 536870911 & dart.notNull(arbitraryPrime) * dart.notNull(this[_name] .hashCode);
1854 } 1854 }
1855 toString() { 1855 toString() {
1856 return `Symbol("${this[_name]}")`; 1856 return `Symbol("${this[_name]}")`;
1857 } 1857 }
1858 static getName(symbol) { 1858 static getName(symbol) {
1859 return symbol[_name]; 1859 return symbol[_name];
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1953 exports.ReversedListIterable = ReversedListIterable; 1953 exports.ReversedListIterable = ReversedListIterable;
1954 exports.UnmodifiableListError = UnmodifiableListError; 1954 exports.UnmodifiableListError = UnmodifiableListError;
1955 exports.NonGrowableListError = NonGrowableListError; 1955 exports.NonGrowableListError = NonGrowableListError;
1956 exports.makeListFixedLength = makeListFixedLength; 1956 exports.makeListFixedLength = makeListFixedLength;
1957 exports.Lists = Lists; 1957 exports.Lists = Lists;
1958 exports.printToConsole = printToConsole; 1958 exports.printToConsole = printToConsole;
1959 exports.Sort = Sort; 1959 exports.Sort = Sort;
1960 exports.Symbol = Symbol; 1960 exports.Symbol = Symbol;
1961 exports.POWERS_OF_TEN = POWERS_OF_TEN; 1961 exports.POWERS_OF_TEN = POWERS_OF_TEN;
1962 })(_internal || (_internal = {})); 1962 })(_internal || (_internal = {}));
OLDNEW
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698