| Index: src/vm/program.h
|
| diff --git a/src/vm/program.h b/src/vm/program.h
|
| index 1991bdc64a8a8ff593bfb8d5b6ab4ec510b05983..9991568be823317a7d509b79cae24153f670002f 100644
|
| --- a/src/vm/program.h
|
| +++ b/src/vm/program.h
|
| @@ -12,7 +12,7 @@
|
| #include "src/vm/links.h"
|
| #include "src/vm/program_folder.h"
|
|
|
| -namespace fletch {
|
| +namespace dartino {
|
|
|
| typedef void (*ProgramExitListener)(Program*, int exitcode, void* data);
|
|
|
| @@ -244,7 +244,7 @@ class Program {
|
| Object* CreateArrayWith(int capacity, Object* initial_value);
|
| Object* CreateByteArray(int capacity);
|
| Object* CreateClass(int fields);
|
| - Object* CreateDouble(fletch_double value);
|
| + Object* CreateDouble(dartino_double value);
|
| Object* CreateFunction(int arity, List<uint8> bytes, int number_of_literals);
|
| Object* CreateInteger(int64 value);
|
| Object* CreateLargeInteger(int64 value);
|
| @@ -373,6 +373,6 @@ class Program {
|
| LookupCache* cache_;
|
| };
|
|
|
| -} // namespace fletch
|
| +} // namespace dartino
|
|
|
| #endif // SRC_VM_PROGRAM_H_
|
|
|