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

Unified Diff: lib/runtime/dart/typed_data.js

Issue 1030063004: more care around generated names, fixes #60 #82 and #97 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: lib/runtime/dart/typed_data.js
diff --git a/lib/runtime/dart/typed_data.js b/lib/runtime/dart/typed_data.js
index 5143b2ec21fd1c0b3f26c1b6116aeb2c77fd3ef5..e724ce86d0efeb4e828074c7dbdd85161ba1d00b 100644
--- a/lib/runtime/dart/typed_data.js
+++ b/lib/runtime/dart/typed_data.js
@@ -7,8 +7,8 @@ var typed_data;
}
let _littleEndian = Symbol('_littleEndian');
class Endianness extends core.Object {
- Endianness$_($_littleEndian) {
- this[_littleEndian] = $_littleEndian;
+ Endianness$_(littleEndian) {
+ this[_littleEndian] = littleEndian;
}
}
dart.defineNamedConstructor(Endianness, '_');

Powered by Google App Engine
This is Rietveld 408576698