diff options
author | Linus Groh <mail@linusgroh.de> | 2021-06-07 20:05:50 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-07 20:05:50 +0100 |
commit | 2b8a2542a0c46f0eac02d49059f40f9cfb3a7976 (patch) | |
tree | 81aa91868bcf941da91cf0e9e8a6212dc0881630 /Userland/Libraries/LibJS/AST.h | |
parent | fa9bad912effbe2cf3334e29a7df4908a3174022 (diff) | |
download | serenity-2b8a2542a0c46f0eac02d49059f40f9cfb3a7976.zip |
LibJS: Add bytecode generation for DebuggerStatement
No-op. :^)
Diffstat (limited to 'Userland/Libraries/LibJS/AST.h')
-rw-r--r-- | Userland/Libraries/LibJS/AST.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/AST.h b/Userland/Libraries/LibJS/AST.h index 45380bc975..6420845308 100644 --- a/Userland/Libraries/LibJS/AST.h +++ b/Userland/Libraries/LibJS/AST.h @@ -1319,6 +1319,7 @@ public: } virtual Value execute(Interpreter&, GlobalObject&) const override; + virtual Optional<Bytecode::Register> generate_bytecode(Bytecode::Generator&) const override; }; template<typename C> |