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

Side by Side Diff: src/vm/session.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dartino project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dartino project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 #ifndef SRC_VM_SESSION_H_ 5 #ifndef SRC_VM_SESSION_H_
6 #define SRC_VM_SESSION_H_ 6 #define SRC_VM_SESSION_H_
7 7
8 #ifndef FLETCH_ENABLE_LIVE_CODING 8 #ifndef DARTINO_ENABLE_LIVE_CODING
9 #include "src/vm/session_no_live_coding.h" 9 #include "src/vm/session_no_live_coding.h"
10 #else // FLETCH_ENABLE_LIVE_CODING 10 #else // DARTINO_ENABLE_LIVE_CODING
11 11
12 #include "src/shared/names.h" 12 #include "src/shared/names.h"
13 13
14 #include "src/vm/object_list.h" 14 #include "src/vm/object_list.h"
15 #include "src/vm/program.h" 15 #include "src/vm/program.h"
16 #include "src/vm/snapshot.h" 16 #include "src/vm/snapshot.h"
17 #include "src/vm/thread.h" 17 #include "src/vm/thread.h"
18 18
19 namespace fletch { 19 namespace dartino {
20 20
21 class Connection; 21 class Connection;
22 class Frame; 22 class Frame;
23 class ObjectMap; 23 class ObjectMap;
24 class PointerVisitor; 24 class PointerVisitor;
25 class PostponedChange; 25 class PostponedChange;
26 26
27 class Session { 27 class Session {
28 public: 28 public:
29 explicit Session(Connection* connection); 29 explicit Session(Connection* connection);
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 220
221 // Compute the function for the top frame on the stack 221 // Compute the function for the top frame on the stack
222 // and push it on the session stack. 222 // and push it on the session stack.
223 void PushTopStackFrame(Stack* stack); 223 void PushTopStackFrame(Stack* stack);
224 224
225 void RestartFrame(int index); 225 void RestartFrame(int index);
226 226
227 Process* GetProcess(int process_id); 227 Process* GetProcess(int process_id);
228 }; 228 };
229 229
230 } // namespace fletch 230 } // namespace dartino
231 231
232 #endif // FLETCH_ENABLE_LIVE_CODING 232 #endif // DARTINO_ENABLE_LIVE_CODING
233 233
234 #endif // SRC_VM_SESSION_H_ 234 #endif // SRC_VM_SESSION_H_
OLDNEW
« pkg/file/lib/file.dart ('K') | « src/vm/service_api_impl.cc ('k') | src/vm/session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698