| Index: src/vm/dartino.cc
|
| diff --git a/src/vm/fletch.cc b/src/vm/dartino.cc
|
| similarity index 87%
|
| rename from src/vm/fletch.cc
|
| rename to src/vm/dartino.cc
|
| index eb720e9dcb35f04c7162fe811b727ea74122cdcc..871a8b9343ee30ab4728ed9b48c031bc4a5865a2 100644
|
| --- a/src/vm/fletch.cc
|
| +++ b/src/vm/dartino.cc
|
| @@ -2,7 +2,7 @@
|
| // 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.
|
|
|
| -#include "src/shared/fletch.h"
|
| +#include "src/shared/dartino.h"
|
|
|
| #include "src/shared/platform.h"
|
|
|
| @@ -14,9 +14,9 @@
|
| #include "src/vm/scheduler.h"
|
| #include "src/vm/thread.h"
|
|
|
| -namespace fletch {
|
| +namespace dartino {
|
|
|
| -void Fletch::Setup() {
|
| +void Dartino::Setup() {
|
| Platform::Setup();
|
| Thread::Setup();
|
| ObjectMemory::Setup();
|
| @@ -27,7 +27,7 @@ void Fletch::Setup() {
|
| Preempter::Setup();
|
| }
|
|
|
| -void Fletch::TearDown() {
|
| +void Dartino::TearDown() {
|
| Preempter::TearDown();
|
| Thread::TearDown();
|
| Scheduler::TearDown();
|
| @@ -38,4 +38,4 @@ void Fletch::TearDown() {
|
| Platform::TearDown();
|
| }
|
|
|
| -} // namespace fletch
|
| +} // namespace dartino
|
|
|