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

Unified Diff: runtime/lib/invocation_mirror_patch.dart

Issue 133273011: Revert "Rename internal library dart:_collection-dev to dart:_internal." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: reapply after revert. Created 6 years, 11 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 | « runtime/lib/internal_sources.gypi ('k') | runtime/lib/mirrors_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/invocation_mirror_patch.dart
diff --git a/runtime/lib/invocation_mirror_patch.dart b/runtime/lib/invocation_mirror_patch.dart
index 3f76e4e7b2a53abd0e2b3f2dddd1b199ef1e77b4..a37feb5ff005ffc1d097c74ae24f11068974f275 100644
--- a/runtime/lib/invocation_mirror_patch.dart
+++ b/runtime/lib/invocation_mirror_patch.dart
@@ -40,15 +40,15 @@ class _InvocationMirror implements Invocation {
if (_functionName.startsWith("get:")) {
_type = _GETTER;
_memberName =
- new _collection_dev.Symbol.unvalidated(_functionName.substring(4));
+ new internal.Symbol.unvalidated(_functionName.substring(4));
} else if (_functionName.startsWith("set:")) {
_type = _SETTER;
_memberName =
- new _collection_dev.Symbol.unvalidated(
+ new internal.Symbol.unvalidated(
_functionName.substring(4) + "=");
} else {
_type = _isSuperInvocation ? (_SUPER << _CALL_SHIFT) | _METHOD : _METHOD;
- _memberName = new _collection_dev.Symbol.unvalidated(_functionName);
+ _memberName = new internal.Symbol.unvalidated(_functionName);
}
}
@@ -84,7 +84,7 @@ class _InvocationMirror implements Invocation {
for (int i = 0; i < numNamedArguments; i++) {
String arg_name = _argumentsDescriptor[2 + 2*i];
var arg_value = _arguments[_argumentsDescriptor[3 + 2*i]];
- _namedArguments[new _collection_dev.Symbol.unvalidated(arg_name)] =
+ _namedArguments[new internal.Symbol.unvalidated(arg_name)] =
arg_value;
}
}
« no previous file with comments | « runtime/lib/internal_sources.gypi ('k') | runtime/lib/mirrors_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698