LibJS: Keep track of file names, lines and columns inside the AST

This commit is contained in:
Jean-Baptiste Boric 2021-02-28 10:42:34 +01:00 committed by Andreas Kling
commit 0039ecb189
Notes: sideshowbarker 2024-07-18 21:49:47 +09:00
6 changed files with 134 additions and 122 deletions

View file

@ -222,6 +222,7 @@ private:
Vector<Position> m_rule_starts;
ParserState m_parser_state;
FlyString m_filename;
Vector<ParserState> m_saved_state;
};
}