Expand description
Node flags and modifier flags for AST nodes.
Modules§
- modifier_
flags - Modifier flags for declarations.
Matches TypeScript’s
ModifierFlagsenum exactly. - node_
flags - Node flags indicating various properties of AST nodes.
Matches TypeScript’s
NodeFlagsenum exactly. NOTE:wasm_bindgendoesn’t support bit-shift expressions, so these are stored as au32bitfield inNodeBase. Use the constants below for flag operations. - transform_
flags - Transform flags indicate which transformations are needed for emit.
Matches TypeScript’s
TransformFlagsenum.