![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include "src/torque/earley-parser.h"#include <algorithm>#include <optional>#include <set>#include <unordered_map>#include <unordered_set>#include "src/torque/ast.h"#include "src/torque/utils.h"Go to the source code of this file.
Namespaces | |
| namespace | v8 |
| namespace | v8::internal |
| namespace | v8::internal::torque |
Functions | |
| const Item * | v8::internal::torque::RunEarleyAlgorithm (Symbol *start, const LexerResult &tokens, std::unordered_set< Item, base::hash< Item > > *processed) |
| LineAndColumn current {0, 0, 0} |
Definition at line 22 of file earley-parser.cc.
| LineAndColumn previous {0, 0, 0} |
Definition at line 21 of file earley-parser.cc.