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

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

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix core.Symbol reference Created 5 years, 7 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
OLDNEW
1 var convert; 1 var convert, core, async, typed_data, _internal, collection;
2 (function(exports) { 2 (function(exports, core, async, typed_data, _internal, collection) {
3 'use strict'; 3 'use strict';
4 let ASCII = dart.const(new AsciiCodec()); 4 let ASCII = dart.const(new AsciiCodec());
5 let _ASCII_MASK = 127; 5 let _ASCII_MASK = 127;
6 let _allowInvalid = Symbol('_allowInvalid'); 6 let _allowInvalid = Symbol('_allowInvalid');
7 let Codec$ = dart.generic(function(S, T) { 7 let Codec$ = dart.generic(function(S, T) {
8 class Codec extends core.Object { 8 class Codec extends core.Object {
9 Codec() { 9 Codec() {
10 } 10 }
11 encode(input) { 11 encode(input) {
12 dart.as(input, S); 12 dart.as(input, S);
(...skipping 2409 matching lines...) Expand 10 before | Expand all | Expand 10 after
2422 exports.Latin1Decoder = Latin1Decoder; 2422 exports.Latin1Decoder = Latin1Decoder;
2423 exports.LineSplitter = LineSplitter; 2423 exports.LineSplitter = LineSplitter;
2424 exports.StringConversionSink = StringConversionSink; 2424 exports.StringConversionSink = StringConversionSink;
2425 exports.ClosableStringSink = ClosableStringSink; 2425 exports.ClosableStringSink = ClosableStringSink;
2426 exports.UNICODE_REPLACEMENT_CHARACTER_RUNE = UNICODE_REPLACEMENT_CHARACTER_RUN E; 2426 exports.UNICODE_REPLACEMENT_CHARACTER_RUNE = UNICODE_REPLACEMENT_CHARACTER_RUN E;
2427 exports.UNICODE_BOM_CHARACTER_RUNE = UNICODE_BOM_CHARACTER_RUNE; 2427 exports.UNICODE_BOM_CHARACTER_RUNE = UNICODE_BOM_CHARACTER_RUNE;
2428 exports.UTF8 = UTF8; 2428 exports.UTF8 = UTF8;
2429 exports.Utf8Codec = Utf8Codec; 2429 exports.Utf8Codec = Utf8Codec;
2430 exports.Utf8Encoder = Utf8Encoder; 2430 exports.Utf8Encoder = Utf8Encoder;
2431 exports.Utf8Decoder = Utf8Decoder; 2431 exports.Utf8Decoder = Utf8Decoder;
2432 })(convert || (convert = {})); 2432 })(convert || (convert = {}), core, async || (async = {}), typed_data || (typed_ data = {}), _internal, collection);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698