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

Unified Diff: test/dart_codegen/expect/typed_data/typed_data

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « test/dart_codegen/expect/math/rectangle.dart ('k') | test/dart_codegen/expect/types/types.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/typed_data/typed_data
diff --git a/test/dart_codegen/expect/typed_data/typed_data b/test/dart_codegen/expect/typed_data/typed_data
index 208fc16f9eb2708ae40f7d98aaa7834f0aefeeda..ec03408a12ad2a13bda0e4b69830ee4d87605fd5 100644
--- a/test/dart_codegen/expect/typed_data/typed_data
+++ b/test/dart_codegen/expect/typed_data/typed_data
@@ -1,5 +1,5 @@
library dart.typed_data;
-import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DDC$RT;
+import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DEVC$RT;
import 'dart:collection';
abstract class ByteBuffer {int get lengthInBytes;
Uint8List asUint8List([int offsetInBytes = 0, int length]);
@@ -26,9 +26,9 @@ import 'dart:collection';
class Endianness {const Endianness._(this._littleEndian);
static const Endianness BIG_ENDIAN = const Endianness._(false);
static const Endianness LITTLE_ENDIAN = const Endianness._(true);
- static final Endianness HOST_ENDIAN = (new ByteData.view(new Uint16List.fromList(((__x0) => DDC$RT.cast(__x0, DDC$RT.type((List<dynamic> _) {
+ static final Endianness HOST_ENDIAN = (new ByteData.view(new Uint16List.fromList(((__x0) => DEVC$RT.cast(__x0, DEVC$RT.type((List<dynamic> _) {
}
-), DDC$RT.type((List<int> _) {
+), DEVC$RT.type((List<int> _) {
}
), "CastLiteral", """line 120, column 48 of dart:typed_data: """, __x0 is List<int>, false))([1])).buffer)).getInt8(0) == 1 ? LITTLE_ENDIAN : BIG_ENDIAN;
final bool _littleEndian;
« no previous file with comments | « test/dart_codegen/expect/math/rectangle.dart ('k') | test/dart_codegen/expect/types/types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698