![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <ast.h>
Public Member Functions | |
| CallMethodExpression (SourcePosition pos, Expression *target, IdentifierExpression *method, std::vector< Expression * > arguments, std::vector< Identifier * > labels) | |
| void | VisitAllSubExpressions (VisitCallback callback) override |
Public Member Functions inherited from v8::internal::torque::Expression | |
| Expression (Kind kind, SourcePosition pos) | |
Public Member Functions inherited from v8::internal::torque::AstNode | |
| AstNode (Kind kind, SourcePosition pos) | |
| virtual | ~AstNode ()=default |
Public Attributes | |
| Expression * | target |
| IdentifierExpression * | method |
| std::vector< Expression * > | arguments |
| std::vector< Identifier * > | labels |
Public Attributes inherited from v8::internal::torque::AstNode | |
| const Kind | kind |
| SourcePosition | pos |
Additional Inherited Members | |
Public Types inherited from v8::internal::torque::Expression | |
| using | VisitCallback = std::function<void(Expression*)> |
Public Types inherited from v8::internal::torque::AstNode | |
| enum class | Kind { ENUM_ITEM } |
|
inline |
|
inlineoverridevirtual |
Reimplemented from v8::internal::torque::Expression.
Definition at line 330 of file ast.h.
| std::vector<Expression*> v8::internal::torque::CallMethodExpression::arguments |
| std::vector<Identifier*> v8::internal::torque::CallMethodExpression::labels |
| IdentifierExpression* v8::internal::torque::CallMethodExpression::method |
| Expression* v8::internal::torque::CallMethodExpression::target |