Home | History | Annotate | Download | only in interpreter

Lines Matching defs:Interpreter

8 // Clients of this interface shouldn't depend on lots of interpreter internals.
9 // Do not include anything from src/interpreter other than
10 // src/interpreter/bytecodes.h here!
13 #include "src/interpreter/bytecodes.h"
28 namespace interpreter {
30 class Interpreter {
32 explicit Interpreter(Isolate* isolate);
33 virtual ~Interpreter() {}
35 // Creates an uninitialized interpreter handler table, where each handler
40 // Initializes the interpreter.
110 DISALLOW_COPY_AND_ASSIGN(Interpreter);
113 } // namespace interpreter