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

Unified Diff: lib/system/nsm.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 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 | « lib/system/map.dart ('k') | lib/system/system.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/system/nsm.dart
diff --git a/lib/system/nsm.dart b/lib/system/nsm.dart
index e5e065fcad99d34b2642a731651146b3abfe70a0..dd0fb94507bd1dd1d18d3f5ef6add2d397c10c37 100644
--- a/lib/system/nsm.dart
+++ b/lib/system/nsm.dart
@@ -2,34 +2,34 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-part of dart.fletch._system;
+part of dart.dartino._system;
-class FletchNoSuchMethodError implements NoSuchMethodError {
+class DartinoNoSuchMethodError implements NoSuchMethodError {
final Object _receiver;
final int _receiverClass;
final int _receiverSelector;
- const FletchNoSuchMethodError(this._receiver,
+ const DartinoNoSuchMethodError(this._receiver,
this._receiverClass,
this._receiverSelector);
- String toString() => 'FletchNoSuchMethodError(selector: $_receiverSelector)';
+ String toString() => 'DartinoNoSuchMethodError(selector: $_receiverSelector)';
// TODO(kustermann): This needs to be implemented.
StackTrace get stackTrace => null;
}
-class FletchInvocation implements Invocation {
+class DartinoInvocation implements Invocation {
final Object _receiver;
final int _receiverClass;
final int _receiverSelector;
- const FletchInvocation(this._receiver,
+ const DartinoInvocation(this._receiver,
this._receiverClass,
this._receiverSelector);
- FletchNoSuchMethodError get asNoSuchMethodError {
- return new FletchNoSuchMethodError(
+ DartinoNoSuchMethodError get asNoSuchMethodError {
+ return new DartinoNoSuchMethodError(
_receiver, _receiverClass, _receiverSelector);
}
« no previous file with comments | « lib/system/map.dart ('k') | lib/system/system.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698