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

Unified Diff: src/vm/process.cc

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 | « src/vm/process.h ('k') | src/vm/process_handle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/process.cc
diff --git a/src/vm/process.cc b/src/vm/process.cc
index a28c6cbc2756e1ed2f721baf5c15ac8729713016..16a383aa287be96ce895fa6cdaecfe0634fb3c0b 100644
--- a/src/vm/process.cc
+++ b/src/vm/process.cc
@@ -24,7 +24,7 @@
#include "src/vm/remembered_set.h"
#include "src/vm/session.h"
-namespace fletch {
+namespace dartino {
static uword kPreemptMarker = 1 << 0;
static uword kDebugInterruptMarker = 1 << 1;
@@ -206,7 +206,7 @@ Object* Process::NewArray(int length) {
return result;
}
-Object* Process::NewDouble(fletch_double value) {
+Object* Process::NewDouble(dartino_double value) {
RegisterProcessAllocation();
Class* double_class = program()->double_class();
Object* result = heap()->CreateDouble(double_class, value);
@@ -640,4 +640,4 @@ BEGIN_NATIVE(ProcessQueueGetChannel) {
}
END_NATIVE()
-} // namespace fletch
+} // namespace dartino
« no previous file with comments | « src/vm/process.h ('k') | src/vm/process_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698