#![allow(unused_imports)]
use std::mem::{align_of, offset_of, size_of};
use crate::ast::*;
#[cfg(target_pointer_width = "64")]
const _: () = {
assert!(size_of::<Program>() == 144);
assert!(align_of::<Program>() == 8);
assert!(offset_of!(Program, span) == 0);
assert!(offset_of!(Program, node_id) == 8);
assert!(offset_of!(Program, scope_id) == 12);
assert!(offset_of!(Program, source_text) == 16);
assert!(offset_of!(Program, comments) == 32);
assert!(offset_of!(Program, hashbang) == 56);
assert!(offset_of!(Program, directives) == 88);
assert!(offset_of!(Program, body) == 112);
assert!(offset_of!(Program, source_type) == 136);
assert!(size_of::<Expression>() == 16);
assert!(align_of::<Expression>() == 8);
assert!(size_of::<IdentifierName>() == 32);
assert!(align_of::<IdentifierName>() == 8);
assert!(offset_of!(IdentifierName, span) == 0);
assert!(offset_of!(IdentifierName, node_id) == 8);
assert!(offset_of!(IdentifierName, name) == 16);
assert!(size_of::<IdentifierReference>() == 32);
assert!(align_of::<IdentifierReference>() == 8);
assert!(offset_of!(IdentifierReference, span) == 0);
assert!(offset_of!(IdentifierReference, node_id) == 8);
assert!(offset_of!(IdentifierReference, reference_id) == 12);
assert!(offset_of!(IdentifierReference, name) == 16);
assert!(size_of::<BindingIdentifier>() == 32);
assert!(align_of::<BindingIdentifier>() == 8);
assert!(offset_of!(BindingIdentifier, span) == 0);
assert!(offset_of!(BindingIdentifier, node_id) == 8);
assert!(offset_of!(BindingIdentifier, symbol_id) == 12);
assert!(offset_of!(BindingIdentifier, name) == 16);
assert!(size_of::<LabelIdentifier>() == 32);
assert!(align_of::<LabelIdentifier>() == 8);
assert!(offset_of!(LabelIdentifier, span) == 0);
assert!(offset_of!(LabelIdentifier, node_id) == 8);
assert!(offset_of!(LabelIdentifier, name) == 16);
assert!(size_of::<ThisExpression>() == 16);
assert!(align_of::<ThisExpression>() == 8);
assert!(offset_of!(ThisExpression, span) == 0);
assert!(offset_of!(ThisExpression, node_id) == 8);
assert!(size_of::<ArrayExpression>() == 40);
assert!(align_of::<ArrayExpression>() == 8);
assert!(offset_of!(ArrayExpression, span) == 0);
assert!(offset_of!(ArrayExpression, node_id) == 8);
assert!(offset_of!(ArrayExpression, elements) == 16);
assert!(size_of::<ArrayExpressionElement>() == 24);
assert!(align_of::<ArrayExpressionElement>() == 8);
assert!(size_of::<Elision>() == 16);
assert!(align_of::<Elision>() == 8);
assert!(offset_of!(Elision, span) == 0);
assert!(offset_of!(Elision, node_id) == 8);
assert!(size_of::<ObjectExpression>() == 40);
assert!(align_of::<ObjectExpression>() == 8);
assert!(offset_of!(ObjectExpression, span) == 0);
assert!(offset_of!(ObjectExpression, node_id) == 8);
assert!(offset_of!(ObjectExpression, properties) == 16);
assert!(size_of::<ObjectPropertyKind>() == 16);
assert!(align_of::<ObjectPropertyKind>() == 8);
assert!(size_of::<ObjectProperty>() == 48);
assert!(align_of::<ObjectProperty>() == 8);
assert!(offset_of!(ObjectProperty, span) == 0);
assert!(offset_of!(ObjectProperty, node_id) == 8);
assert!(offset_of!(ObjectProperty, kind) == 12);
assert!(offset_of!(ObjectProperty, method) == 13);
assert!(offset_of!(ObjectProperty, shorthand) == 14);
assert!(offset_of!(ObjectProperty, computed) == 15);
assert!(offset_of!(ObjectProperty, key) == 16);
assert!(offset_of!(ObjectProperty, value) == 32);
assert!(size_of::<PropertyKey>() == 16);
assert!(align_of::<PropertyKey>() == 8);
assert!(size_of::<PropertyKind>() == 1);
assert!(align_of::<PropertyKind>() == 1);
assert!(size_of::<TemplateLiteral>() == 64);
assert!(align_of::<TemplateLiteral>() == 8);
assert!(offset_of!(TemplateLiteral, span) == 0);
assert!(offset_of!(TemplateLiteral, node_id) == 8);
assert!(offset_of!(TemplateLiteral, quasis) == 16);
assert!(offset_of!(TemplateLiteral, expressions) == 40);
assert!(size_of::<TaggedTemplateExpression>() == 104);
assert!(align_of::<TaggedTemplateExpression>() == 8);
assert!(offset_of!(TaggedTemplateExpression, span) == 0);
assert!(offset_of!(TaggedTemplateExpression, node_id) == 8);
assert!(offset_of!(TaggedTemplateExpression, tag) == 16);
assert!(offset_of!(TaggedTemplateExpression, type_arguments) == 32);
assert!(offset_of!(TaggedTemplateExpression, quasi) == 40);
assert!(size_of::<TemplateElement>() == 48);
assert!(align_of::<TemplateElement>() == 8);
assert!(offset_of!(TemplateElement, span) == 0);
assert!(offset_of!(TemplateElement, node_id) == 8);
assert!(offset_of!(TemplateElement, tail) == 12);
assert!(offset_of!(TemplateElement, lone_surrogates) == 13);
assert!(offset_of!(TemplateElement, value) == 16);
assert!(size_of::<TemplateElementValue>() == 32);
assert!(align_of::<TemplateElementValue>() == 8);
assert!(offset_of!(TemplateElementValue, raw) == 0);
assert!(offset_of!(TemplateElementValue, cooked) == 16);
assert!(size_of::<MemberExpression>() == 16);
assert!(align_of::<MemberExpression>() == 8);
assert!(size_of::<ComputedMemberExpression>() == 48);
assert!(align_of::<ComputedMemberExpression>() == 8);
assert!(offset_of!(ComputedMemberExpression, span) == 0);
assert!(offset_of!(ComputedMemberExpression, node_id) == 8);
assert!(offset_of!(ComputedMemberExpression, optional) == 12);
assert!(offset_of!(ComputedMemberExpression, object) == 16);
assert!(offset_of!(ComputedMemberExpression, expression) == 32);
assert!(size_of::<StaticMemberExpression>() == 64);
assert!(align_of::<StaticMemberExpression>() == 8);
assert!(offset_of!(StaticMemberExpression, span) == 0);
assert!(offset_of!(StaticMemberExpression, node_id) == 8);
assert!(offset_of!(StaticMemberExpression, optional) == 12);
assert!(offset_of!(StaticMemberExpression, object) == 16);
assert!(offset_of!(StaticMemberExpression, property) == 32);
assert!(size_of::<PrivateFieldExpression>() == 64);
assert!(align_of::<PrivateFieldExpression>() == 8);
assert!(offset_of!(PrivateFieldExpression, span) == 0);
assert!(offset_of!(PrivateFieldExpression, node_id) == 8);
assert!(offset_of!(PrivateFieldExpression, optional) == 12);
assert!(offset_of!(PrivateFieldExpression, object) == 16);
assert!(offset_of!(PrivateFieldExpression, field) == 32);
assert!(size_of::<CallExpression>() == 64);
assert!(align_of::<CallExpression>() == 8);
assert!(offset_of!(CallExpression, span) == 0);
assert!(offset_of!(CallExpression, node_id) == 8);
assert!(offset_of!(CallExpression, optional) == 12);
assert!(offset_of!(CallExpression, pure) == 13);
assert!(offset_of!(CallExpression, callee) == 16);
assert!(offset_of!(CallExpression, type_arguments) == 32);
assert!(offset_of!(CallExpression, arguments) == 40);
assert!(size_of::<NewExpression>() == 64);
assert!(align_of::<NewExpression>() == 8);
assert!(offset_of!(NewExpression, span) == 0);
assert!(offset_of!(NewExpression, node_id) == 8);
assert!(offset_of!(NewExpression, pure) == 12);
assert!(offset_of!(NewExpression, callee) == 16);
assert!(offset_of!(NewExpression, type_arguments) == 32);
assert!(offset_of!(NewExpression, arguments) == 40);
assert!(size_of::<MetaProperty>() == 80);
assert!(align_of::<MetaProperty>() == 8);
assert!(offset_of!(MetaProperty, span) == 0);
assert!(offset_of!(MetaProperty, node_id) == 8);
assert!(offset_of!(MetaProperty, meta) == 16);
assert!(offset_of!(MetaProperty, property) == 48);
assert!(size_of::<SpreadElement>() == 32);
assert!(align_of::<SpreadElement>() == 8);
assert!(offset_of!(SpreadElement, span) == 0);
assert!(offset_of!(SpreadElement, node_id) == 8);
assert!(offset_of!(SpreadElement, argument) == 16);
assert!(size_of::<Argument>() == 16);
assert!(align_of::<Argument>() == 8);
assert!(size_of::<UpdateExpression>() == 32);
assert!(align_of::<UpdateExpression>() == 8);
assert!(offset_of!(UpdateExpression, span) == 0);
assert!(offset_of!(UpdateExpression, node_id) == 8);
assert!(offset_of!(UpdateExpression, operator) == 12);
assert!(offset_of!(UpdateExpression, prefix) == 13);
assert!(offset_of!(UpdateExpression, argument) == 16);
assert!(size_of::<UnaryExpression>() == 32);
assert!(align_of::<UnaryExpression>() == 8);
assert!(offset_of!(UnaryExpression, span) == 0);
assert!(offset_of!(UnaryExpression, node_id) == 8);
assert!(offset_of!(UnaryExpression, operator) == 12);
assert!(offset_of!(UnaryExpression, argument) == 16);
assert!(size_of::<BinaryExpression>() == 48);
assert!(align_of::<BinaryExpression>() == 8);
assert!(offset_of!(BinaryExpression, span) == 0);
assert!(offset_of!(BinaryExpression, node_id) == 8);
assert!(offset_of!(BinaryExpression, operator) == 12);
assert!(offset_of!(BinaryExpression, left) == 16);
assert!(offset_of!(BinaryExpression, right) == 32);
assert!(size_of::<PrivateInExpression>() == 64);
assert!(align_of::<PrivateInExpression>() == 8);
assert!(offset_of!(PrivateInExpression, span) == 0);
assert!(offset_of!(PrivateInExpression, node_id) == 8);
assert!(offset_of!(PrivateInExpression, left) == 16);
assert!(offset_of!(PrivateInExpression, right) == 48);
assert!(size_of::<LogicalExpression>() == 48);
assert!(align_of::<LogicalExpression>() == 8);
assert!(offset_of!(LogicalExpression, span) == 0);
assert!(offset_of!(LogicalExpression, node_id) == 8);
assert!(offset_of!(LogicalExpression, operator) == 12);
assert!(offset_of!(LogicalExpression, left) == 16);
assert!(offset_of!(LogicalExpression, right) == 32);
assert!(size_of::<ConditionalExpression>() == 64);
assert!(align_of::<ConditionalExpression>() == 8);
assert!(offset_of!(ConditionalExpression, span) == 0);
assert!(offset_of!(ConditionalExpression, node_id) == 8);
assert!(offset_of!(ConditionalExpression, test) == 16);
assert!(offset_of!(ConditionalExpression, consequent) == 32);
assert!(offset_of!(ConditionalExpression, alternate) == 48);
assert!(size_of::<AssignmentExpression>() == 48);
assert!(align_of::<AssignmentExpression>() == 8);
assert!(offset_of!(AssignmentExpression, span) == 0);
assert!(offset_of!(AssignmentExpression, node_id) == 8);
assert!(offset_of!(AssignmentExpression, operator) == 12);
assert!(offset_of!(AssignmentExpression, left) == 16);
assert!(offset_of!(AssignmentExpression, right) == 32);
assert!(size_of::<AssignmentTarget>() == 16);
assert!(align_of::<AssignmentTarget>() == 8);
assert!(size_of::<SimpleAssignmentTarget>() == 16);
assert!(align_of::<SimpleAssignmentTarget>() == 8);
assert!(size_of::<AssignmentTargetPattern>() == 16);
assert!(align_of::<AssignmentTargetPattern>() == 8);
assert!(size_of::<ArrayAssignmentTarget>() == 48);
assert!(align_of::<ArrayAssignmentTarget>() == 8);
assert!(offset_of!(ArrayAssignmentTarget, span) == 0);
assert!(offset_of!(ArrayAssignmentTarget, node_id) == 8);
assert!(offset_of!(ArrayAssignmentTarget, elements) == 16);
assert!(offset_of!(ArrayAssignmentTarget, rest) == 40);
assert!(size_of::<ObjectAssignmentTarget>() == 48);
assert!(align_of::<ObjectAssignmentTarget>() == 8);
assert!(offset_of!(ObjectAssignmentTarget, span) == 0);
assert!(offset_of!(ObjectAssignmentTarget, node_id) == 8);
assert!(offset_of!(ObjectAssignmentTarget, properties) == 16);
assert!(offset_of!(ObjectAssignmentTarget, rest) == 40);
assert!(size_of::<AssignmentTargetRest>() == 32);
assert!(align_of::<AssignmentTargetRest>() == 8);
assert!(offset_of!(AssignmentTargetRest, span) == 0);
assert!(offset_of!(AssignmentTargetRest, node_id) == 8);
assert!(offset_of!(AssignmentTargetRest, target) == 16);
assert!(size_of::<AssignmentTargetMaybeDefault>() == 16);
assert!(align_of::<AssignmentTargetMaybeDefault>() == 8);
assert!(size_of::<AssignmentTargetWithDefault>() == 48);
assert!(align_of::<AssignmentTargetWithDefault>() == 8);
assert!(offset_of!(AssignmentTargetWithDefault, span) == 0);
assert!(offset_of!(AssignmentTargetWithDefault, node_id) == 8);
assert!(offset_of!(AssignmentTargetWithDefault, binding) == 16);
assert!(offset_of!(AssignmentTargetWithDefault, init) == 32);
assert!(size_of::<AssignmentTargetProperty>() == 16);
assert!(align_of::<AssignmentTargetProperty>() == 8);
assert!(size_of::<AssignmentTargetPropertyIdentifier>() == 64);
assert!(align_of::<AssignmentTargetPropertyIdentifier>() == 8);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, span) == 0);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, node_id) == 8);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, binding) == 16);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, init) == 48);
assert!(size_of::<AssignmentTargetPropertyProperty>() == 48);
assert!(align_of::<AssignmentTargetPropertyProperty>() == 8);
assert!(offset_of!(AssignmentTargetPropertyProperty, span) == 0);
assert!(offset_of!(AssignmentTargetPropertyProperty, node_id) == 8);
assert!(offset_of!(AssignmentTargetPropertyProperty, computed) == 12);
assert!(offset_of!(AssignmentTargetPropertyProperty, name) == 16);
assert!(offset_of!(AssignmentTargetPropertyProperty, binding) == 32);
assert!(size_of::<SequenceExpression>() == 40);
assert!(align_of::<SequenceExpression>() == 8);
assert!(offset_of!(SequenceExpression, span) == 0);
assert!(offset_of!(SequenceExpression, node_id) == 8);
assert!(offset_of!(SequenceExpression, expressions) == 16);
assert!(size_of::<Super>() == 16);
assert!(align_of::<Super>() == 8);
assert!(offset_of!(Super, span) == 0);
assert!(offset_of!(Super, node_id) == 8);
assert!(size_of::<AwaitExpression>() == 32);
assert!(align_of::<AwaitExpression>() == 8);
assert!(offset_of!(AwaitExpression, span) == 0);
assert!(offset_of!(AwaitExpression, node_id) == 8);
assert!(offset_of!(AwaitExpression, argument) == 16);
assert!(size_of::<ChainExpression>() == 32);
assert!(align_of::<ChainExpression>() == 8);
assert!(offset_of!(ChainExpression, span) == 0);
assert!(offset_of!(ChainExpression, node_id) == 8);
assert!(offset_of!(ChainExpression, expression) == 16);
assert!(size_of::<ChainElement>() == 16);
assert!(align_of::<ChainElement>() == 8);
assert!(size_of::<ParenthesizedExpression>() == 32);
assert!(align_of::<ParenthesizedExpression>() == 8);
assert!(offset_of!(ParenthesizedExpression, span) == 0);
assert!(offset_of!(ParenthesizedExpression, node_id) == 8);
assert!(offset_of!(ParenthesizedExpression, expression) == 16);
assert!(size_of::<Statement>() == 16);
assert!(align_of::<Statement>() == 8);
assert!(size_of::<Directive>() == 80);
assert!(align_of::<Directive>() == 8);
assert!(offset_of!(Directive, span) == 0);
assert!(offset_of!(Directive, node_id) == 8);
assert!(offset_of!(Directive, expression) == 16);
assert!(offset_of!(Directive, directive) == 64);
assert!(size_of::<Hashbang>() == 32);
assert!(align_of::<Hashbang>() == 8);
assert!(offset_of!(Hashbang, span) == 0);
assert!(offset_of!(Hashbang, node_id) == 8);
assert!(offset_of!(Hashbang, value) == 16);
assert!(size_of::<BlockStatement>() == 40);
assert!(align_of::<BlockStatement>() == 8);
assert!(offset_of!(BlockStatement, span) == 0);
assert!(offset_of!(BlockStatement, node_id) == 8);
assert!(offset_of!(BlockStatement, scope_id) == 12);
assert!(offset_of!(BlockStatement, body) == 16);
assert!(size_of::<Declaration>() == 16);
assert!(align_of::<Declaration>() == 8);
assert!(size_of::<VariableDeclaration>() == 40);
assert!(align_of::<VariableDeclaration>() == 8);
assert!(offset_of!(VariableDeclaration, span) == 0);
assert!(offset_of!(VariableDeclaration, node_id) == 8);
assert!(offset_of!(VariableDeclaration, kind) == 12);
assert!(offset_of!(VariableDeclaration, declare) == 13);
assert!(offset_of!(VariableDeclaration, declarations) == 16);
assert!(size_of::<VariableDeclarationKind>() == 1);
assert!(align_of::<VariableDeclarationKind>() == 1);
assert!(size_of::<VariableDeclarator>() == 56);
assert!(align_of::<VariableDeclarator>() == 8);
assert!(offset_of!(VariableDeclarator, span) == 0);
assert!(offset_of!(VariableDeclarator, node_id) == 8);
assert!(offset_of!(VariableDeclarator, kind) == 12);
assert!(offset_of!(VariableDeclarator, definite) == 13);
assert!(offset_of!(VariableDeclarator, id) == 16);
assert!(offset_of!(VariableDeclarator, type_annotation) == 32);
assert!(offset_of!(VariableDeclarator, init) == 40);
assert!(size_of::<EmptyStatement>() == 16);
assert!(align_of::<EmptyStatement>() == 8);
assert!(offset_of!(EmptyStatement, span) == 0);
assert!(offset_of!(EmptyStatement, node_id) == 8);
assert!(size_of::<ExpressionStatement>() == 32);
assert!(align_of::<ExpressionStatement>() == 8);
assert!(offset_of!(ExpressionStatement, span) == 0);
assert!(offset_of!(ExpressionStatement, node_id) == 8);
assert!(offset_of!(ExpressionStatement, expression) == 16);
assert!(size_of::<IfStatement>() == 64);
assert!(align_of::<IfStatement>() == 8);
assert!(offset_of!(IfStatement, span) == 0);
assert!(offset_of!(IfStatement, node_id) == 8);
assert!(offset_of!(IfStatement, test) == 16);
assert!(offset_of!(IfStatement, consequent) == 32);
assert!(offset_of!(IfStatement, alternate) == 48);
assert!(size_of::<DoWhileStatement>() == 48);
assert!(align_of::<DoWhileStatement>() == 8);
assert!(offset_of!(DoWhileStatement, span) == 0);
assert!(offset_of!(DoWhileStatement, node_id) == 8);
assert!(offset_of!(DoWhileStatement, body) == 16);
assert!(offset_of!(DoWhileStatement, test) == 32);
assert!(size_of::<WhileStatement>() == 48);
assert!(align_of::<WhileStatement>() == 8);
assert!(offset_of!(WhileStatement, span) == 0);
assert!(offset_of!(WhileStatement, node_id) == 8);
assert!(offset_of!(WhileStatement, test) == 16);
assert!(offset_of!(WhileStatement, body) == 32);
assert!(size_of::<ForStatement>() == 80);
assert!(align_of::<ForStatement>() == 8);
assert!(offset_of!(ForStatement, span) == 0);
assert!(offset_of!(ForStatement, node_id) == 8);
assert!(offset_of!(ForStatement, scope_id) == 12);
assert!(offset_of!(ForStatement, init) == 16);
assert!(offset_of!(ForStatement, test) == 32);
assert!(offset_of!(ForStatement, update) == 48);
assert!(offset_of!(ForStatement, body) == 64);
assert!(size_of::<ForStatementInit>() == 16);
assert!(align_of::<ForStatementInit>() == 8);
assert!(size_of::<ForInStatement>() == 64);
assert!(align_of::<ForInStatement>() == 8);
assert!(offset_of!(ForInStatement, span) == 0);
assert!(offset_of!(ForInStatement, node_id) == 8);
assert!(offset_of!(ForInStatement, scope_id) == 12);
assert!(offset_of!(ForInStatement, left) == 16);
assert!(offset_of!(ForInStatement, right) == 32);
assert!(offset_of!(ForInStatement, body) == 48);
assert!(size_of::<ForStatementLeft>() == 16);
assert!(align_of::<ForStatementLeft>() == 8);
assert!(size_of::<ForOfStatement>() == 72);
assert!(align_of::<ForOfStatement>() == 8);
assert!(offset_of!(ForOfStatement, span) == 0);
assert!(offset_of!(ForOfStatement, node_id) == 8);
assert!(offset_of!(ForOfStatement, scope_id) == 12);
assert!(offset_of!(ForOfStatement, left) == 16);
assert!(offset_of!(ForOfStatement, right) == 32);
assert!(offset_of!(ForOfStatement, body) == 48);
assert!(offset_of!(ForOfStatement, r#await) == 64);
assert!(size_of::<ContinueStatement>() == 48);
assert!(align_of::<ContinueStatement>() == 8);
assert!(offset_of!(ContinueStatement, span) == 0);
assert!(offset_of!(ContinueStatement, node_id) == 8);
assert!(offset_of!(ContinueStatement, label) == 16);
assert!(size_of::<BreakStatement>() == 48);
assert!(align_of::<BreakStatement>() == 8);
assert!(offset_of!(BreakStatement, span) == 0);
assert!(offset_of!(BreakStatement, node_id) == 8);
assert!(offset_of!(BreakStatement, label) == 16);
assert!(size_of::<ReturnStatement>() == 32);
assert!(align_of::<ReturnStatement>() == 8);
assert!(offset_of!(ReturnStatement, span) == 0);
assert!(offset_of!(ReturnStatement, node_id) == 8);
assert!(offset_of!(ReturnStatement, argument) == 16);
assert!(size_of::<WithStatement>() == 48);
assert!(align_of::<WithStatement>() == 8);
assert!(offset_of!(WithStatement, span) == 0);
assert!(offset_of!(WithStatement, node_id) == 8);
assert!(offset_of!(WithStatement, scope_id) == 12);
assert!(offset_of!(WithStatement, object) == 16);
assert!(offset_of!(WithStatement, body) == 32);
assert!(size_of::<SwitchStatement>() == 56);
assert!(align_of::<SwitchStatement>() == 8);
assert!(offset_of!(SwitchStatement, span) == 0);
assert!(offset_of!(SwitchStatement, node_id) == 8);
assert!(offset_of!(SwitchStatement, scope_id) == 12);
assert!(offset_of!(SwitchStatement, discriminant) == 16);
assert!(offset_of!(SwitchStatement, cases) == 32);
assert!(size_of::<SwitchCase>() == 56);
assert!(align_of::<SwitchCase>() == 8);
assert!(offset_of!(SwitchCase, span) == 0);
assert!(offset_of!(SwitchCase, node_id) == 8);
assert!(offset_of!(SwitchCase, test) == 16);
assert!(offset_of!(SwitchCase, consequent) == 32);
assert!(size_of::<LabeledStatement>() == 64);
assert!(align_of::<LabeledStatement>() == 8);
assert!(offset_of!(LabeledStatement, span) == 0);
assert!(offset_of!(LabeledStatement, node_id) == 8);
assert!(offset_of!(LabeledStatement, label) == 16);
assert!(offset_of!(LabeledStatement, body) == 48);
assert!(size_of::<ThrowStatement>() == 32);
assert!(align_of::<ThrowStatement>() == 8);
assert!(offset_of!(ThrowStatement, span) == 0);
assert!(offset_of!(ThrowStatement, node_id) == 8);
assert!(offset_of!(ThrowStatement, argument) == 16);
assert!(size_of::<TryStatement>() == 40);
assert!(align_of::<TryStatement>() == 8);
assert!(offset_of!(TryStatement, span) == 0);
assert!(offset_of!(TryStatement, node_id) == 8);
assert!(offset_of!(TryStatement, block) == 16);
assert!(offset_of!(TryStatement, handler) == 24);
assert!(offset_of!(TryStatement, finalizer) == 32);
assert!(size_of::<CatchClause>() == 64);
assert!(align_of::<CatchClause>() == 8);
assert!(offset_of!(CatchClause, span) == 0);
assert!(offset_of!(CatchClause, node_id) == 8);
assert!(offset_of!(CatchClause, scope_id) == 12);
assert!(offset_of!(CatchClause, param) == 16);
assert!(offset_of!(CatchClause, body) == 56);
assert!(size_of::<CatchParameter>() == 40);
assert!(align_of::<CatchParameter>() == 8);
assert!(offset_of!(CatchParameter, span) == 0);
assert!(offset_of!(CatchParameter, node_id) == 8);
assert!(offset_of!(CatchParameter, pattern) == 16);
assert!(offset_of!(CatchParameter, type_annotation) == 32);
assert!(size_of::<DebuggerStatement>() == 16);
assert!(align_of::<DebuggerStatement>() == 8);
assert!(offset_of!(DebuggerStatement, span) == 0);
assert!(offset_of!(DebuggerStatement, node_id) == 8);
assert!(size_of::<BindingPattern>() == 16);
assert!(align_of::<BindingPattern>() == 8);
assert!(size_of::<AssignmentPattern>() == 48);
assert!(align_of::<AssignmentPattern>() == 8);
assert!(offset_of!(AssignmentPattern, span) == 0);
assert!(offset_of!(AssignmentPattern, node_id) == 8);
assert!(offset_of!(AssignmentPattern, left) == 16);
assert!(offset_of!(AssignmentPattern, right) == 32);
assert!(size_of::<ObjectPattern>() == 48);
assert!(align_of::<ObjectPattern>() == 8);
assert!(offset_of!(ObjectPattern, span) == 0);
assert!(offset_of!(ObjectPattern, node_id) == 8);
assert!(offset_of!(ObjectPattern, properties) == 16);
assert!(offset_of!(ObjectPattern, rest) == 40);
assert!(size_of::<BindingProperty>() == 48);
assert!(align_of::<BindingProperty>() == 8);
assert!(offset_of!(BindingProperty, span) == 0);
assert!(offset_of!(BindingProperty, node_id) == 8);
assert!(offset_of!(BindingProperty, shorthand) == 12);
assert!(offset_of!(BindingProperty, computed) == 13);
assert!(offset_of!(BindingProperty, key) == 16);
assert!(offset_of!(BindingProperty, value) == 32);
assert!(size_of::<ArrayPattern>() == 48);
assert!(align_of::<ArrayPattern>() == 8);
assert!(offset_of!(ArrayPattern, span) == 0);
assert!(offset_of!(ArrayPattern, node_id) == 8);
assert!(offset_of!(ArrayPattern, elements) == 16);
assert!(offset_of!(ArrayPattern, rest) == 40);
assert!(size_of::<BindingRestElement>() == 32);
assert!(align_of::<BindingRestElement>() == 8);
assert!(offset_of!(BindingRestElement, span) == 0);
assert!(offset_of!(BindingRestElement, node_id) == 8);
assert!(offset_of!(BindingRestElement, argument) == 16);
assert!(size_of::<Function>() == 96);
assert!(align_of::<Function>() == 8);
assert!(offset_of!(Function, span) == 0);
assert!(offset_of!(Function, node_id) == 8);
assert!(offset_of!(Function, scope_id) == 12);
assert!(offset_of!(Function, id) == 16);
assert!(offset_of!(Function, type_parameters) == 48);
assert!(offset_of!(Function, this_param) == 56);
assert!(offset_of!(Function, params) == 64);
assert!(offset_of!(Function, return_type) == 72);
assert!(offset_of!(Function, body) == 80);
assert!(offset_of!(Function, r#type) == 88);
assert!(offset_of!(Function, generator) == 89);
assert!(offset_of!(Function, r#async) == 90);
assert!(offset_of!(Function, declare) == 91);
assert!(offset_of!(Function, pure) == 92);
assert!(offset_of!(Function, pife) == 93);
assert!(size_of::<FunctionType>() == 1);
assert!(align_of::<FunctionType>() == 1);
assert!(size_of::<FormalParameters>() == 48);
assert!(align_of::<FormalParameters>() == 8);
assert!(offset_of!(FormalParameters, span) == 0);
assert!(offset_of!(FormalParameters, node_id) == 8);
assert!(offset_of!(FormalParameters, kind) == 12);
assert!(offset_of!(FormalParameters, items) == 16);
assert!(offset_of!(FormalParameters, rest) == 40);
assert!(size_of::<FormalParameter>() == 72);
assert!(align_of::<FormalParameter>() == 8);
assert!(offset_of!(FormalParameter, span) == 0);
assert!(offset_of!(FormalParameter, node_id) == 8);
assert!(offset_of!(FormalParameter, optional) == 12);
assert!(offset_of!(FormalParameter, accessibility) == 13);
assert!(offset_of!(FormalParameter, readonly) == 14);
assert!(offset_of!(FormalParameter, r#override) == 15);
assert!(offset_of!(FormalParameter, decorators) == 16);
assert!(offset_of!(FormalParameter, pattern) == 40);
assert!(offset_of!(FormalParameter, type_annotation) == 56);
assert!(offset_of!(FormalParameter, initializer) == 64);
assert!(size_of::<FormalParameterKind>() == 1);
assert!(align_of::<FormalParameterKind>() == 1);
assert!(size_of::<FormalParameterRest>() == 80);
assert!(align_of::<FormalParameterRest>() == 8);
assert!(offset_of!(FormalParameterRest, span) == 0);
assert!(offset_of!(FormalParameterRest, node_id) == 8);
assert!(offset_of!(FormalParameterRest, decorators) == 16);
assert!(offset_of!(FormalParameterRest, rest) == 40);
assert!(offset_of!(FormalParameterRest, type_annotation) == 72);
assert!(size_of::<FunctionBody>() == 64);
assert!(align_of::<FunctionBody>() == 8);
assert!(offset_of!(FunctionBody, span) == 0);
assert!(offset_of!(FunctionBody, node_id) == 8);
assert!(offset_of!(FunctionBody, directives) == 16);
assert!(offset_of!(FunctionBody, statements) == 40);
assert!(size_of::<ArrowFunctionExpression>() == 56);
assert!(align_of::<ArrowFunctionExpression>() == 8);
assert!(offset_of!(ArrowFunctionExpression, span) == 0);
assert!(offset_of!(ArrowFunctionExpression, node_id) == 8);
assert!(offset_of!(ArrowFunctionExpression, scope_id) == 12);
assert!(offset_of!(ArrowFunctionExpression, type_parameters) == 16);
assert!(offset_of!(ArrowFunctionExpression, params) == 24);
assert!(offset_of!(ArrowFunctionExpression, return_type) == 32);
assert!(offset_of!(ArrowFunctionExpression, body) == 40);
assert!(offset_of!(ArrowFunctionExpression, expression) == 48);
assert!(offset_of!(ArrowFunctionExpression, r#async) == 49);
assert!(offset_of!(ArrowFunctionExpression, pure) == 50);
assert!(offset_of!(ArrowFunctionExpression, pife) == 51);
assert!(size_of::<YieldExpression>() == 32);
assert!(align_of::<YieldExpression>() == 8);
assert!(offset_of!(YieldExpression, span) == 0);
assert!(offset_of!(YieldExpression, node_id) == 8);
assert!(offset_of!(YieldExpression, delegate) == 12);
assert!(offset_of!(YieldExpression, argument) == 16);
assert!(size_of::<Class>() == 144);
assert!(align_of::<Class>() == 8);
assert!(offset_of!(Class, span) == 0);
assert!(offset_of!(Class, node_id) == 8);
assert!(offset_of!(Class, scope_id) == 12);
assert!(offset_of!(Class, decorators) == 16);
assert!(offset_of!(Class, id) == 40);
assert!(offset_of!(Class, type_parameters) == 72);
assert!(offset_of!(Class, super_class) == 80);
assert!(offset_of!(Class, super_type_arguments) == 96);
assert!(offset_of!(Class, implements) == 104);
assert!(offset_of!(Class, body) == 128);
assert!(offset_of!(Class, r#type) == 136);
assert!(offset_of!(Class, r#abstract) == 137);
assert!(offset_of!(Class, declare) == 138);
assert!(size_of::<ClassType>() == 1);
assert!(align_of::<ClassType>() == 1);
assert!(size_of::<ClassBody>() == 40);
assert!(align_of::<ClassBody>() == 8);
assert!(offset_of!(ClassBody, span) == 0);
assert!(offset_of!(ClassBody, node_id) == 8);
assert!(offset_of!(ClassBody, body) == 16);
assert!(size_of::<ClassElement>() == 16);
assert!(align_of::<ClassElement>() == 8);
assert!(size_of::<MethodDefinition>() == 72);
assert!(align_of::<MethodDefinition>() == 8);
assert!(offset_of!(MethodDefinition, span) == 0);
assert!(offset_of!(MethodDefinition, node_id) == 8);
assert!(offset_of!(MethodDefinition, r#type) == 12);
assert!(offset_of!(MethodDefinition, kind) == 13);
assert!(offset_of!(MethodDefinition, computed) == 14);
assert!(offset_of!(MethodDefinition, r#static) == 15);
assert!(offset_of!(MethodDefinition, decorators) == 16);
assert!(offset_of!(MethodDefinition, key) == 40);
assert!(offset_of!(MethodDefinition, value) == 56);
assert!(offset_of!(MethodDefinition, r#override) == 64);
assert!(offset_of!(MethodDefinition, optional) == 65);
assert!(offset_of!(MethodDefinition, accessibility) == 66);
assert!(size_of::<MethodDefinitionType>() == 1);
assert!(align_of::<MethodDefinitionType>() == 1);
assert!(size_of::<PropertyDefinition>() == 88);
assert!(align_of::<PropertyDefinition>() == 8);
assert!(offset_of!(PropertyDefinition, span) == 0);
assert!(offset_of!(PropertyDefinition, node_id) == 8);
assert!(offset_of!(PropertyDefinition, r#type) == 12);
assert!(offset_of!(PropertyDefinition, computed) == 13);
assert!(offset_of!(PropertyDefinition, r#static) == 14);
assert!(offset_of!(PropertyDefinition, declare) == 15);
assert!(offset_of!(PropertyDefinition, decorators) == 16);
assert!(offset_of!(PropertyDefinition, key) == 40);
assert!(offset_of!(PropertyDefinition, type_annotation) == 56);
assert!(offset_of!(PropertyDefinition, value) == 64);
assert!(offset_of!(PropertyDefinition, r#override) == 80);
assert!(offset_of!(PropertyDefinition, optional) == 81);
assert!(offset_of!(PropertyDefinition, definite) == 82);
assert!(offset_of!(PropertyDefinition, readonly) == 83);
assert!(offset_of!(PropertyDefinition, accessibility) == 84);
assert!(size_of::<PropertyDefinitionType>() == 1);
assert!(align_of::<PropertyDefinitionType>() == 1);
assert!(size_of::<MethodDefinitionKind>() == 1);
assert!(align_of::<MethodDefinitionKind>() == 1);
assert!(size_of::<PrivateIdentifier>() == 32);
assert!(align_of::<PrivateIdentifier>() == 8);
assert!(offset_of!(PrivateIdentifier, span) == 0);
assert!(offset_of!(PrivateIdentifier, node_id) == 8);
assert!(offset_of!(PrivateIdentifier, name) == 16);
assert!(size_of::<StaticBlock>() == 40);
assert!(align_of::<StaticBlock>() == 8);
assert!(offset_of!(StaticBlock, span) == 0);
assert!(offset_of!(StaticBlock, node_id) == 8);
assert!(offset_of!(StaticBlock, scope_id) == 12);
assert!(offset_of!(StaticBlock, body) == 16);
assert!(size_of::<ModuleDeclaration>() == 16);
assert!(align_of::<ModuleDeclaration>() == 8);
assert!(size_of::<AccessorPropertyType>() == 1);
assert!(align_of::<AccessorPropertyType>() == 1);
assert!(size_of::<AccessorProperty>() == 88);
assert!(align_of::<AccessorProperty>() == 8);
assert!(offset_of!(AccessorProperty, span) == 0);
assert!(offset_of!(AccessorProperty, node_id) == 8);
assert!(offset_of!(AccessorProperty, r#type) == 12);
assert!(offset_of!(AccessorProperty, computed) == 13);
assert!(offset_of!(AccessorProperty, r#static) == 14);
assert!(offset_of!(AccessorProperty, r#override) == 15);
assert!(offset_of!(AccessorProperty, decorators) == 16);
assert!(offset_of!(AccessorProperty, key) == 40);
assert!(offset_of!(AccessorProperty, type_annotation) == 56);
assert!(offset_of!(AccessorProperty, value) == 64);
assert!(offset_of!(AccessorProperty, definite) == 80);
assert!(offset_of!(AccessorProperty, accessibility) == 81);
assert!(size_of::<ImportExpression>() == 48);
assert!(align_of::<ImportExpression>() == 8);
assert!(offset_of!(ImportExpression, span) == 0);
assert!(offset_of!(ImportExpression, node_id) == 8);
assert!(offset_of!(ImportExpression, phase) == 12);
assert!(offset_of!(ImportExpression, source) == 16);
assert!(offset_of!(ImportExpression, options) == 32);
assert!(size_of::<ImportDeclaration>() == 96);
assert!(align_of::<ImportDeclaration>() == 8);
assert!(offset_of!(ImportDeclaration, span) == 0);
assert!(offset_of!(ImportDeclaration, node_id) == 8);
assert!(offset_of!(ImportDeclaration, phase) == 12);
assert!(offset_of!(ImportDeclaration, import_kind) == 13);
assert!(offset_of!(ImportDeclaration, specifiers) == 16);
assert!(offset_of!(ImportDeclaration, source) == 40);
assert!(offset_of!(ImportDeclaration, with_clause) == 88);
assert!(size_of::<ImportPhase>() == 1);
assert!(align_of::<ImportPhase>() == 1);
assert!(size_of::<ImportDeclarationSpecifier>() == 16);
assert!(align_of::<ImportDeclarationSpecifier>() == 8);
assert!(size_of::<ImportSpecifier>() == 104);
assert!(align_of::<ImportSpecifier>() == 8);
assert!(offset_of!(ImportSpecifier, span) == 0);
assert!(offset_of!(ImportSpecifier, node_id) == 8);
assert!(offset_of!(ImportSpecifier, import_kind) == 12);
assert!(offset_of!(ImportSpecifier, imported) == 16);
assert!(offset_of!(ImportSpecifier, local) == 72);
assert!(size_of::<ImportDefaultSpecifier>() == 48);
assert!(align_of::<ImportDefaultSpecifier>() == 8);
assert!(offset_of!(ImportDefaultSpecifier, span) == 0);
assert!(offset_of!(ImportDefaultSpecifier, node_id) == 8);
assert!(offset_of!(ImportDefaultSpecifier, local) == 16);
assert!(size_of::<ImportNamespaceSpecifier>() == 48);
assert!(align_of::<ImportNamespaceSpecifier>() == 8);
assert!(offset_of!(ImportNamespaceSpecifier, span) == 0);
assert!(offset_of!(ImportNamespaceSpecifier, node_id) == 8);
assert!(offset_of!(ImportNamespaceSpecifier, local) == 16);
assert!(size_of::<WithClause>() == 40);
assert!(align_of::<WithClause>() == 8);
assert!(offset_of!(WithClause, span) == 0);
assert!(offset_of!(WithClause, node_id) == 8);
assert!(offset_of!(WithClause, keyword) == 12);
assert!(offset_of!(WithClause, with_entries) == 16);
assert!(size_of::<WithClauseKeyword>() == 1);
assert!(align_of::<WithClauseKeyword>() == 1);
assert!(size_of::<ImportAttribute>() == 120);
assert!(align_of::<ImportAttribute>() == 8);
assert!(offset_of!(ImportAttribute, span) == 0);
assert!(offset_of!(ImportAttribute, node_id) == 8);
assert!(offset_of!(ImportAttribute, key) == 16);
assert!(offset_of!(ImportAttribute, value) == 72);
assert!(size_of::<ImportAttributeKey>() == 56);
assert!(align_of::<ImportAttributeKey>() == 8);
assert!(size_of::<ExportNamedDeclaration>() == 112);
assert!(align_of::<ExportNamedDeclaration>() == 8);
assert!(offset_of!(ExportNamedDeclaration, span) == 0);
assert!(offset_of!(ExportNamedDeclaration, node_id) == 8);
assert!(offset_of!(ExportNamedDeclaration, export_kind) == 12);
assert!(offset_of!(ExportNamedDeclaration, declaration) == 16);
assert!(offset_of!(ExportNamedDeclaration, specifiers) == 32);
assert!(offset_of!(ExportNamedDeclaration, source) == 56);
assert!(offset_of!(ExportNamedDeclaration, with_clause) == 104);
assert!(size_of::<ExportDefaultDeclaration>() == 32);
assert!(align_of::<ExportDefaultDeclaration>() == 8);
assert!(offset_of!(ExportDefaultDeclaration, span) == 0);
assert!(offset_of!(ExportDefaultDeclaration, node_id) == 8);
assert!(offset_of!(ExportDefaultDeclaration, declaration) == 16);
assert!(size_of::<ExportAllDeclaration>() == 128);
assert!(align_of::<ExportAllDeclaration>() == 8);
assert!(offset_of!(ExportAllDeclaration, span) == 0);
assert!(offset_of!(ExportAllDeclaration, node_id) == 8);
assert!(offset_of!(ExportAllDeclaration, export_kind) == 12);
assert!(offset_of!(ExportAllDeclaration, exported) == 16);
assert!(offset_of!(ExportAllDeclaration, source) == 72);
assert!(offset_of!(ExportAllDeclaration, with_clause) == 120);
assert!(size_of::<ExportSpecifier>() == 128);
assert!(align_of::<ExportSpecifier>() == 8);
assert!(offset_of!(ExportSpecifier, span) == 0);
assert!(offset_of!(ExportSpecifier, node_id) == 8);
assert!(offset_of!(ExportSpecifier, export_kind) == 12);
assert!(offset_of!(ExportSpecifier, local) == 16);
assert!(offset_of!(ExportSpecifier, exported) == 72);
assert!(size_of::<ExportDefaultDeclarationKind>() == 16);
assert!(align_of::<ExportDefaultDeclarationKind>() == 8);
assert!(size_of::<ModuleExportName>() == 56);
assert!(align_of::<ModuleExportName>() == 8);
assert!(size_of::<V8IntrinsicExpression>() == 72);
assert!(align_of::<V8IntrinsicExpression>() == 8);
assert!(offset_of!(V8IntrinsicExpression, span) == 0);
assert!(offset_of!(V8IntrinsicExpression, node_id) == 8);
assert!(offset_of!(V8IntrinsicExpression, name) == 16);
assert!(offset_of!(V8IntrinsicExpression, arguments) == 48);
assert!(size_of::<BooleanLiteral>() == 16);
assert!(align_of::<BooleanLiteral>() == 8);
assert!(offset_of!(BooleanLiteral, span) == 0);
assert!(offset_of!(BooleanLiteral, node_id) == 8);
assert!(offset_of!(BooleanLiteral, value) == 12);
assert!(size_of::<NullLiteral>() == 16);
assert!(align_of::<NullLiteral>() == 8);
assert!(offset_of!(NullLiteral, span) == 0);
assert!(offset_of!(NullLiteral, node_id) == 8);
assert!(size_of::<NumericLiteral>() == 40);
assert!(align_of::<NumericLiteral>() == 8);
assert!(offset_of!(NumericLiteral, span) == 0);
assert!(offset_of!(NumericLiteral, node_id) == 8);
assert!(offset_of!(NumericLiteral, base) == 12);
assert!(offset_of!(NumericLiteral, raw) == 16);
assert!(offset_of!(NumericLiteral, value) == 32);
assert!(size_of::<StringLiteral>() == 48);
assert!(align_of::<StringLiteral>() == 8);
assert!(offset_of!(StringLiteral, span) == 0);
assert!(offset_of!(StringLiteral, node_id) == 8);
assert!(offset_of!(StringLiteral, lone_surrogates) == 12);
assert!(offset_of!(StringLiteral, value) == 16);
assert!(offset_of!(StringLiteral, raw) == 32);
assert!(size_of::<BigIntLiteral>() == 48);
assert!(align_of::<BigIntLiteral>() == 8);
assert!(offset_of!(BigIntLiteral, span) == 0);
assert!(offset_of!(BigIntLiteral, node_id) == 8);
assert!(offset_of!(BigIntLiteral, base) == 12);
assert!(offset_of!(BigIntLiteral, value) == 16);
assert!(offset_of!(BigIntLiteral, raw) == 32);
assert!(size_of::<RegExpLiteral>() == 64);
assert!(align_of::<RegExpLiteral>() == 8);
assert!(offset_of!(RegExpLiteral, span) == 0);
assert!(offset_of!(RegExpLiteral, node_id) == 8);
assert!(offset_of!(RegExpLiteral, regex) == 16);
assert!(offset_of!(RegExpLiteral, raw) == 48);
assert!(size_of::<RegExp>() == 32);
assert!(align_of::<RegExp>() == 8);
assert!(offset_of!(RegExp, pattern) == 0);
assert!(offset_of!(RegExp, flags) == 24);
assert!(size_of::<RegExpPattern>() == 24);
assert!(align_of::<RegExpPattern>() == 8);
assert!(offset_of!(RegExpPattern, text) == 0);
assert!(offset_of!(RegExpPattern, pattern) == 16);
assert!(size_of::<RegExpFlags>() == 1);
assert!(align_of::<RegExpFlags>() == 1);
assert!(size_of::<JSXElement>() == 56);
assert!(align_of::<JSXElement>() == 8);
assert!(offset_of!(JSXElement, span) == 0);
assert!(offset_of!(JSXElement, node_id) == 8);
assert!(offset_of!(JSXElement, opening_element) == 16);
assert!(offset_of!(JSXElement, children) == 24);
assert!(offset_of!(JSXElement, closing_element) == 48);
assert!(size_of::<JSXOpeningElement>() == 64);
assert!(align_of::<JSXOpeningElement>() == 8);
assert!(offset_of!(JSXOpeningElement, span) == 0);
assert!(offset_of!(JSXOpeningElement, node_id) == 8);
assert!(offset_of!(JSXOpeningElement, name) == 16);
assert!(offset_of!(JSXOpeningElement, type_arguments) == 32);
assert!(offset_of!(JSXOpeningElement, attributes) == 40);
assert!(size_of::<JSXClosingElement>() == 32);
assert!(align_of::<JSXClosingElement>() == 8);
assert!(offset_of!(JSXClosingElement, span) == 0);
assert!(offset_of!(JSXClosingElement, node_id) == 8);
assert!(offset_of!(JSXClosingElement, name) == 16);
assert!(size_of::<JSXFragment>() == 72);
assert!(align_of::<JSXFragment>() == 8);
assert!(offset_of!(JSXFragment, span) == 0);
assert!(offset_of!(JSXFragment, node_id) == 8);
assert!(offset_of!(JSXFragment, opening_fragment) == 16);
assert!(offset_of!(JSXFragment, children) == 32);
assert!(offset_of!(JSXFragment, closing_fragment) == 56);
assert!(size_of::<JSXOpeningFragment>() == 16);
assert!(align_of::<JSXOpeningFragment>() == 8);
assert!(offset_of!(JSXOpeningFragment, span) == 0);
assert!(offset_of!(JSXOpeningFragment, node_id) == 8);
assert!(size_of::<JSXClosingFragment>() == 16);
assert!(align_of::<JSXClosingFragment>() == 8);
assert!(offset_of!(JSXClosingFragment, span) == 0);
assert!(offset_of!(JSXClosingFragment, node_id) == 8);
assert!(size_of::<JSXElementName>() == 16);
assert!(align_of::<JSXElementName>() == 8);
assert!(size_of::<JSXNamespacedName>() == 80);
assert!(align_of::<JSXNamespacedName>() == 8);
assert!(offset_of!(JSXNamespacedName, span) == 0);
assert!(offset_of!(JSXNamespacedName, node_id) == 8);
assert!(offset_of!(JSXNamespacedName, namespace) == 16);
assert!(offset_of!(JSXNamespacedName, name) == 48);
assert!(size_of::<JSXMemberExpression>() == 64);
assert!(align_of::<JSXMemberExpression>() == 8);
assert!(offset_of!(JSXMemberExpression, span) == 0);
assert!(offset_of!(JSXMemberExpression, node_id) == 8);
assert!(offset_of!(JSXMemberExpression, object) == 16);
assert!(offset_of!(JSXMemberExpression, property) == 32);
assert!(size_of::<JSXMemberExpressionObject>() == 16);
assert!(align_of::<JSXMemberExpressionObject>() == 8);
assert!(size_of::<JSXExpressionContainer>() == 40);
assert!(align_of::<JSXExpressionContainer>() == 8);
assert!(offset_of!(JSXExpressionContainer, span) == 0);
assert!(offset_of!(JSXExpressionContainer, node_id) == 8);
assert!(offset_of!(JSXExpressionContainer, expression) == 16);
assert!(size_of::<JSXExpression>() == 24);
assert!(align_of::<JSXExpression>() == 8);
assert!(size_of::<JSXEmptyExpression>() == 16);
assert!(align_of::<JSXEmptyExpression>() == 8);
assert!(offset_of!(JSXEmptyExpression, span) == 0);
assert!(offset_of!(JSXEmptyExpression, node_id) == 8);
assert!(size_of::<JSXAttributeItem>() == 16);
assert!(align_of::<JSXAttributeItem>() == 8);
assert!(size_of::<JSXAttribute>() == 48);
assert!(align_of::<JSXAttribute>() == 8);
assert!(offset_of!(JSXAttribute, span) == 0);
assert!(offset_of!(JSXAttribute, node_id) == 8);
assert!(offset_of!(JSXAttribute, name) == 16);
assert!(offset_of!(JSXAttribute, value) == 32);
assert!(size_of::<JSXSpreadAttribute>() == 32);
assert!(align_of::<JSXSpreadAttribute>() == 8);
assert!(offset_of!(JSXSpreadAttribute, span) == 0);
assert!(offset_of!(JSXSpreadAttribute, node_id) == 8);
assert!(offset_of!(JSXSpreadAttribute, argument) == 16);
assert!(size_of::<JSXAttributeName>() == 16);
assert!(align_of::<JSXAttributeName>() == 8);
assert!(size_of::<JSXAttributeValue>() == 16);
assert!(align_of::<JSXAttributeValue>() == 8);
assert!(size_of::<JSXIdentifier>() == 32);
assert!(align_of::<JSXIdentifier>() == 8);
assert!(offset_of!(JSXIdentifier, span) == 0);
assert!(offset_of!(JSXIdentifier, node_id) == 8);
assert!(offset_of!(JSXIdentifier, name) == 16);
assert!(size_of::<JSXChild>() == 16);
assert!(align_of::<JSXChild>() == 8);
assert!(size_of::<JSXSpreadChild>() == 32);
assert!(align_of::<JSXSpreadChild>() == 8);
assert!(offset_of!(JSXSpreadChild, span) == 0);
assert!(offset_of!(JSXSpreadChild, node_id) == 8);
assert!(offset_of!(JSXSpreadChild, expression) == 16);
assert!(size_of::<JSXText>() == 48);
assert!(align_of::<JSXText>() == 8);
assert!(offset_of!(JSXText, span) == 0);
assert!(offset_of!(JSXText, node_id) == 8);
assert!(offset_of!(JSXText, value) == 16);
assert!(offset_of!(JSXText, raw) == 32);
assert!(size_of::<TSThisParameter>() == 32);
assert!(align_of::<TSThisParameter>() == 8);
assert!(offset_of!(TSThisParameter, span) == 0);
assert!(offset_of!(TSThisParameter, node_id) == 8);
assert!(offset_of!(TSThisParameter, this_span) == 16);
assert!(offset_of!(TSThisParameter, type_annotation) == 24);
assert!(size_of::<TSEnumDeclaration>() == 88);
assert!(align_of::<TSEnumDeclaration>() == 8);
assert!(offset_of!(TSEnumDeclaration, span) == 0);
assert!(offset_of!(TSEnumDeclaration, node_id) == 8);
assert!(offset_of!(TSEnumDeclaration, r#const) == 12);
assert!(offset_of!(TSEnumDeclaration, declare) == 13);
assert!(offset_of!(TSEnumDeclaration, id) == 16);
assert!(offset_of!(TSEnumDeclaration, body) == 48);
assert!(size_of::<TSEnumBody>() == 40);
assert!(align_of::<TSEnumBody>() == 8);
assert!(offset_of!(TSEnumBody, span) == 0);
assert!(offset_of!(TSEnumBody, node_id) == 8);
assert!(offset_of!(TSEnumBody, scope_id) == 12);
assert!(offset_of!(TSEnumBody, members) == 16);
assert!(size_of::<TSEnumMember>() == 48);
assert!(align_of::<TSEnumMember>() == 8);
assert!(offset_of!(TSEnumMember, span) == 0);
assert!(offset_of!(TSEnumMember, node_id) == 8);
assert!(offset_of!(TSEnumMember, id) == 16);
assert!(offset_of!(TSEnumMember, initializer) == 32);
assert!(size_of::<TSEnumMemberName>() == 16);
assert!(align_of::<TSEnumMemberName>() == 8);
assert!(size_of::<TSTypeAnnotation>() == 32);
assert!(align_of::<TSTypeAnnotation>() == 8);
assert!(offset_of!(TSTypeAnnotation, span) == 0);
assert!(offset_of!(TSTypeAnnotation, node_id) == 8);
assert!(offset_of!(TSTypeAnnotation, type_annotation) == 16);
assert!(size_of::<TSLiteralType>() == 32);
assert!(align_of::<TSLiteralType>() == 8);
assert!(offset_of!(TSLiteralType, span) == 0);
assert!(offset_of!(TSLiteralType, node_id) == 8);
assert!(offset_of!(TSLiteralType, literal) == 16);
assert!(size_of::<TSLiteral>() == 16);
assert!(align_of::<TSLiteral>() == 8);
assert!(size_of::<TSType>() == 16);
assert!(align_of::<TSType>() == 8);
assert!(size_of::<TSConditionalType>() == 80);
assert!(align_of::<TSConditionalType>() == 8);
assert!(offset_of!(TSConditionalType, span) == 0);
assert!(offset_of!(TSConditionalType, node_id) == 8);
assert!(offset_of!(TSConditionalType, scope_id) == 12);
assert!(offset_of!(TSConditionalType, check_type) == 16);
assert!(offset_of!(TSConditionalType, extends_type) == 32);
assert!(offset_of!(TSConditionalType, true_type) == 48);
assert!(offset_of!(TSConditionalType, false_type) == 64);
assert!(size_of::<TSUnionType>() == 40);
assert!(align_of::<TSUnionType>() == 8);
assert!(offset_of!(TSUnionType, span) == 0);
assert!(offset_of!(TSUnionType, node_id) == 8);
assert!(offset_of!(TSUnionType, types) == 16);
assert!(size_of::<TSIntersectionType>() == 40);
assert!(align_of::<TSIntersectionType>() == 8);
assert!(offset_of!(TSIntersectionType, span) == 0);
assert!(offset_of!(TSIntersectionType, node_id) == 8);
assert!(offset_of!(TSIntersectionType, types) == 16);
assert!(size_of::<TSParenthesizedType>() == 32);
assert!(align_of::<TSParenthesizedType>() == 8);
assert!(offset_of!(TSParenthesizedType, span) == 0);
assert!(offset_of!(TSParenthesizedType, node_id) == 8);
assert!(offset_of!(TSParenthesizedType, type_annotation) == 16);
assert!(size_of::<TSTypeOperator>() == 32);
assert!(align_of::<TSTypeOperator>() == 8);
assert!(offset_of!(TSTypeOperator, span) == 0);
assert!(offset_of!(TSTypeOperator, node_id) == 8);
assert!(offset_of!(TSTypeOperator, operator) == 12);
assert!(offset_of!(TSTypeOperator, type_annotation) == 16);
assert!(size_of::<TSTypeOperatorOperator>() == 1);
assert!(align_of::<TSTypeOperatorOperator>() == 1);
assert!(size_of::<TSArrayType>() == 32);
assert!(align_of::<TSArrayType>() == 8);
assert!(offset_of!(TSArrayType, span) == 0);
assert!(offset_of!(TSArrayType, node_id) == 8);
assert!(offset_of!(TSArrayType, element_type) == 16);
assert!(size_of::<TSIndexedAccessType>() == 48);
assert!(align_of::<TSIndexedAccessType>() == 8);
assert!(offset_of!(TSIndexedAccessType, span) == 0);
assert!(offset_of!(TSIndexedAccessType, node_id) == 8);
assert!(offset_of!(TSIndexedAccessType, object_type) == 16);
assert!(offset_of!(TSIndexedAccessType, index_type) == 32);
assert!(size_of::<TSTupleType>() == 40);
assert!(align_of::<TSTupleType>() == 8);
assert!(offset_of!(TSTupleType, span) == 0);
assert!(offset_of!(TSTupleType, node_id) == 8);
assert!(offset_of!(TSTupleType, element_types) == 16);
assert!(size_of::<TSNamedTupleMember>() == 64);
assert!(align_of::<TSNamedTupleMember>() == 8);
assert!(offset_of!(TSNamedTupleMember, span) == 0);
assert!(offset_of!(TSNamedTupleMember, node_id) == 8);
assert!(offset_of!(TSNamedTupleMember, optional) == 12);
assert!(offset_of!(TSNamedTupleMember, label) == 16);
assert!(offset_of!(TSNamedTupleMember, element_type) == 48);
assert!(size_of::<TSOptionalType>() == 32);
assert!(align_of::<TSOptionalType>() == 8);
assert!(offset_of!(TSOptionalType, span) == 0);
assert!(offset_of!(TSOptionalType, node_id) == 8);
assert!(offset_of!(TSOptionalType, type_annotation) == 16);
assert!(size_of::<TSRestType>() == 32);
assert!(align_of::<TSRestType>() == 8);
assert!(offset_of!(TSRestType, span) == 0);
assert!(offset_of!(TSRestType, node_id) == 8);
assert!(offset_of!(TSRestType, type_annotation) == 16);
assert!(size_of::<TSTupleElement>() == 16);
assert!(align_of::<TSTupleElement>() == 8);
assert!(size_of::<TSAnyKeyword>() == 16);
assert!(align_of::<TSAnyKeyword>() == 8);
assert!(offset_of!(TSAnyKeyword, span) == 0);
assert!(offset_of!(TSAnyKeyword, node_id) == 8);
assert!(size_of::<TSStringKeyword>() == 16);
assert!(align_of::<TSStringKeyword>() == 8);
assert!(offset_of!(TSStringKeyword, span) == 0);
assert!(offset_of!(TSStringKeyword, node_id) == 8);
assert!(size_of::<TSBooleanKeyword>() == 16);
assert!(align_of::<TSBooleanKeyword>() == 8);
assert!(offset_of!(TSBooleanKeyword, span) == 0);
assert!(offset_of!(TSBooleanKeyword, node_id) == 8);
assert!(size_of::<TSNumberKeyword>() == 16);
assert!(align_of::<TSNumberKeyword>() == 8);
assert!(offset_of!(TSNumberKeyword, span) == 0);
assert!(offset_of!(TSNumberKeyword, node_id) == 8);
assert!(size_of::<TSNeverKeyword>() == 16);
assert!(align_of::<TSNeverKeyword>() == 8);
assert!(offset_of!(TSNeverKeyword, span) == 0);
assert!(offset_of!(TSNeverKeyword, node_id) == 8);
assert!(size_of::<TSIntrinsicKeyword>() == 16);
assert!(align_of::<TSIntrinsicKeyword>() == 8);
assert!(offset_of!(TSIntrinsicKeyword, span) == 0);
assert!(offset_of!(TSIntrinsicKeyword, node_id) == 8);
assert!(size_of::<TSUnknownKeyword>() == 16);
assert!(align_of::<TSUnknownKeyword>() == 8);
assert!(offset_of!(TSUnknownKeyword, span) == 0);
assert!(offset_of!(TSUnknownKeyword, node_id) == 8);
assert!(size_of::<TSNullKeyword>() == 16);
assert!(align_of::<TSNullKeyword>() == 8);
assert!(offset_of!(TSNullKeyword, span) == 0);
assert!(offset_of!(TSNullKeyword, node_id) == 8);
assert!(size_of::<TSUndefinedKeyword>() == 16);
assert!(align_of::<TSUndefinedKeyword>() == 8);
assert!(offset_of!(TSUndefinedKeyword, span) == 0);
assert!(offset_of!(TSUndefinedKeyword, node_id) == 8);
assert!(size_of::<TSVoidKeyword>() == 16);
assert!(align_of::<TSVoidKeyword>() == 8);
assert!(offset_of!(TSVoidKeyword, span) == 0);
assert!(offset_of!(TSVoidKeyword, node_id) == 8);
assert!(size_of::<TSSymbolKeyword>() == 16);
assert!(align_of::<TSSymbolKeyword>() == 8);
assert!(offset_of!(TSSymbolKeyword, span) == 0);
assert!(offset_of!(TSSymbolKeyword, node_id) == 8);
assert!(size_of::<TSThisType>() == 16);
assert!(align_of::<TSThisType>() == 8);
assert!(offset_of!(TSThisType, span) == 0);
assert!(offset_of!(TSThisType, node_id) == 8);
assert!(size_of::<TSObjectKeyword>() == 16);
assert!(align_of::<TSObjectKeyword>() == 8);
assert!(offset_of!(TSObjectKeyword, span) == 0);
assert!(offset_of!(TSObjectKeyword, node_id) == 8);
assert!(size_of::<TSBigIntKeyword>() == 16);
assert!(align_of::<TSBigIntKeyword>() == 8);
assert!(offset_of!(TSBigIntKeyword, span) == 0);
assert!(offset_of!(TSBigIntKeyword, node_id) == 8);
assert!(size_of::<TSTypeReference>() == 40);
assert!(align_of::<TSTypeReference>() == 8);
assert!(offset_of!(TSTypeReference, span) == 0);
assert!(offset_of!(TSTypeReference, node_id) == 8);
assert!(offset_of!(TSTypeReference, type_name) == 16);
assert!(offset_of!(TSTypeReference, type_arguments) == 32);
assert!(size_of::<TSTypeName>() == 16);
assert!(align_of::<TSTypeName>() == 8);
assert!(size_of::<TSQualifiedName>() == 64);
assert!(align_of::<TSQualifiedName>() == 8);
assert!(offset_of!(TSQualifiedName, span) == 0);
assert!(offset_of!(TSQualifiedName, node_id) == 8);
assert!(offset_of!(TSQualifiedName, left) == 16);
assert!(offset_of!(TSQualifiedName, right) == 32);
assert!(size_of::<TSTypeParameterInstantiation>() == 40);
assert!(align_of::<TSTypeParameterInstantiation>() == 8);
assert!(offset_of!(TSTypeParameterInstantiation, span) == 0);
assert!(offset_of!(TSTypeParameterInstantiation, node_id) == 8);
assert!(offset_of!(TSTypeParameterInstantiation, params) == 16);
assert!(size_of::<TSTypeParameter>() == 80);
assert!(align_of::<TSTypeParameter>() == 8);
assert!(offset_of!(TSTypeParameter, span) == 0);
assert!(offset_of!(TSTypeParameter, node_id) == 8);
assert!(offset_of!(TSTypeParameter, r#in) == 12);
assert!(offset_of!(TSTypeParameter, out) == 13);
assert!(offset_of!(TSTypeParameter, r#const) == 14);
assert!(offset_of!(TSTypeParameter, name) == 16);
assert!(offset_of!(TSTypeParameter, constraint) == 48);
assert!(offset_of!(TSTypeParameter, default) == 64);
assert!(size_of::<TSTypeParameterDeclaration>() == 40);
assert!(align_of::<TSTypeParameterDeclaration>() == 8);
assert!(offset_of!(TSTypeParameterDeclaration, span) == 0);
assert!(offset_of!(TSTypeParameterDeclaration, node_id) == 8);
assert!(offset_of!(TSTypeParameterDeclaration, params) == 16);
assert!(size_of::<TSTypeAliasDeclaration>() == 80);
assert!(align_of::<TSTypeAliasDeclaration>() == 8);
assert!(offset_of!(TSTypeAliasDeclaration, span) == 0);
assert!(offset_of!(TSTypeAliasDeclaration, node_id) == 8);
assert!(offset_of!(TSTypeAliasDeclaration, scope_id) == 12);
assert!(offset_of!(TSTypeAliasDeclaration, id) == 16);
assert!(offset_of!(TSTypeAliasDeclaration, type_parameters) == 48);
assert!(offset_of!(TSTypeAliasDeclaration, type_annotation) == 56);
assert!(offset_of!(TSTypeAliasDeclaration, declare) == 72);
assert!(size_of::<TSAccessibility>() == 1);
assert!(align_of::<TSAccessibility>() == 1);
assert!(size_of::<TSClassImplements>() == 40);
assert!(align_of::<TSClassImplements>() == 8);
assert!(offset_of!(TSClassImplements, span) == 0);
assert!(offset_of!(TSClassImplements, node_id) == 8);
assert!(offset_of!(TSClassImplements, expression) == 16);
assert!(offset_of!(TSClassImplements, type_arguments) == 32);
assert!(size_of::<TSInterfaceDeclaration>() == 96);
assert!(align_of::<TSInterfaceDeclaration>() == 8);
assert!(offset_of!(TSInterfaceDeclaration, span) == 0);
assert!(offset_of!(TSInterfaceDeclaration, node_id) == 8);
assert!(offset_of!(TSInterfaceDeclaration, scope_id) == 12);
assert!(offset_of!(TSInterfaceDeclaration, id) == 16);
assert!(offset_of!(TSInterfaceDeclaration, type_parameters) == 48);
assert!(offset_of!(TSInterfaceDeclaration, extends) == 56);
assert!(offset_of!(TSInterfaceDeclaration, body) == 80);
assert!(offset_of!(TSInterfaceDeclaration, declare) == 88);
assert!(size_of::<TSInterfaceBody>() == 40);
assert!(align_of::<TSInterfaceBody>() == 8);
assert!(offset_of!(TSInterfaceBody, span) == 0);
assert!(offset_of!(TSInterfaceBody, node_id) == 8);
assert!(offset_of!(TSInterfaceBody, body) == 16);
assert!(size_of::<TSPropertySignature>() == 40);
assert!(align_of::<TSPropertySignature>() == 8);
assert!(offset_of!(TSPropertySignature, span) == 0);
assert!(offset_of!(TSPropertySignature, node_id) == 8);
assert!(offset_of!(TSPropertySignature, computed) == 12);
assert!(offset_of!(TSPropertySignature, optional) == 13);
assert!(offset_of!(TSPropertySignature, readonly) == 14);
assert!(offset_of!(TSPropertySignature, key) == 16);
assert!(offset_of!(TSPropertySignature, type_annotation) == 32);
assert!(size_of::<TSSignature>() == 16);
assert!(align_of::<TSSignature>() == 8);
assert!(size_of::<TSIndexSignature>() == 48);
assert!(align_of::<TSIndexSignature>() == 8);
assert!(offset_of!(TSIndexSignature, span) == 0);
assert!(offset_of!(TSIndexSignature, node_id) == 8);
assert!(offset_of!(TSIndexSignature, readonly) == 12);
assert!(offset_of!(TSIndexSignature, r#static) == 13);
assert!(offset_of!(TSIndexSignature, parameters) == 16);
assert!(offset_of!(TSIndexSignature, type_annotation) == 40);
assert!(size_of::<TSCallSignatureDeclaration>() == 48);
assert!(align_of::<TSCallSignatureDeclaration>() == 8);
assert!(offset_of!(TSCallSignatureDeclaration, span) == 0);
assert!(offset_of!(TSCallSignatureDeclaration, node_id) == 8);
assert!(offset_of!(TSCallSignatureDeclaration, scope_id) == 12);
assert!(offset_of!(TSCallSignatureDeclaration, type_parameters) == 16);
assert!(offset_of!(TSCallSignatureDeclaration, this_param) == 24);
assert!(offset_of!(TSCallSignatureDeclaration, params) == 32);
assert!(offset_of!(TSCallSignatureDeclaration, return_type) == 40);
assert!(size_of::<TSMethodSignatureKind>() == 1);
assert!(align_of::<TSMethodSignatureKind>() == 1);
assert!(size_of::<TSMethodSignature>() == 72);
assert!(align_of::<TSMethodSignature>() == 8);
assert!(offset_of!(TSMethodSignature, span) == 0);
assert!(offset_of!(TSMethodSignature, node_id) == 8);
assert!(offset_of!(TSMethodSignature, scope_id) == 12);
assert!(offset_of!(TSMethodSignature, key) == 16);
assert!(offset_of!(TSMethodSignature, type_parameters) == 32);
assert!(offset_of!(TSMethodSignature, this_param) == 40);
assert!(offset_of!(TSMethodSignature, params) == 48);
assert!(offset_of!(TSMethodSignature, return_type) == 56);
assert!(offset_of!(TSMethodSignature, computed) == 64);
assert!(offset_of!(TSMethodSignature, optional) == 65);
assert!(offset_of!(TSMethodSignature, kind) == 66);
assert!(size_of::<TSConstructSignatureDeclaration>() == 40);
assert!(align_of::<TSConstructSignatureDeclaration>() == 8);
assert!(offset_of!(TSConstructSignatureDeclaration, span) == 0);
assert!(offset_of!(TSConstructSignatureDeclaration, node_id) == 8);
assert!(offset_of!(TSConstructSignatureDeclaration, scope_id) == 12);
assert!(offset_of!(TSConstructSignatureDeclaration, type_parameters) == 16);
assert!(offset_of!(TSConstructSignatureDeclaration, params) == 24);
assert!(offset_of!(TSConstructSignatureDeclaration, return_type) == 32);
assert!(size_of::<TSIndexSignatureName>() == 40);
assert!(align_of::<TSIndexSignatureName>() == 8);
assert!(offset_of!(TSIndexSignatureName, span) == 0);
assert!(offset_of!(TSIndexSignatureName, node_id) == 8);
assert!(offset_of!(TSIndexSignatureName, name) == 16);
assert!(offset_of!(TSIndexSignatureName, type_annotation) == 32);
assert!(size_of::<TSInterfaceHeritage>() == 40);
assert!(align_of::<TSInterfaceHeritage>() == 8);
assert!(offset_of!(TSInterfaceHeritage, span) == 0);
assert!(offset_of!(TSInterfaceHeritage, node_id) == 8);
assert!(offset_of!(TSInterfaceHeritage, expression) == 16);
assert!(offset_of!(TSInterfaceHeritage, type_arguments) == 32);
assert!(size_of::<TSTypePredicate>() == 48);
assert!(align_of::<TSTypePredicate>() == 8);
assert!(offset_of!(TSTypePredicate, span) == 0);
assert!(offset_of!(TSTypePredicate, node_id) == 8);
assert!(offset_of!(TSTypePredicate, asserts) == 12);
assert!(offset_of!(TSTypePredicate, parameter_name) == 16);
assert!(offset_of!(TSTypePredicate, type_annotation) == 40);
assert!(size_of::<TSTypePredicateName>() == 24);
assert!(align_of::<TSTypePredicateName>() == 8);
assert!(size_of::<TSModuleDeclaration>() == 96);
assert!(align_of::<TSModuleDeclaration>() == 8);
assert!(offset_of!(TSModuleDeclaration, span) == 0);
assert!(offset_of!(TSModuleDeclaration, node_id) == 8);
assert!(offset_of!(TSModuleDeclaration, scope_id) == 12);
assert!(offset_of!(TSModuleDeclaration, id) == 16);
assert!(offset_of!(TSModuleDeclaration, body) == 72);
assert!(offset_of!(TSModuleDeclaration, kind) == 88);
assert!(offset_of!(TSModuleDeclaration, declare) == 89);
assert!(size_of::<TSModuleDeclarationKind>() == 1);
assert!(align_of::<TSModuleDeclarationKind>() == 1);
assert!(size_of::<TSModuleDeclarationName>() == 56);
assert!(align_of::<TSModuleDeclarationName>() == 8);
assert!(size_of::<TSModuleDeclarationBody>() == 16);
assert!(align_of::<TSModuleDeclarationBody>() == 8);
assert!(size_of::<TSGlobalDeclaration>() == 96);
assert!(align_of::<TSGlobalDeclaration>() == 8);
assert!(offset_of!(TSGlobalDeclaration, span) == 0);
assert!(offset_of!(TSGlobalDeclaration, node_id) == 8);
assert!(offset_of!(TSGlobalDeclaration, scope_id) == 12);
assert!(offset_of!(TSGlobalDeclaration, global_span) == 16);
assert!(offset_of!(TSGlobalDeclaration, body) == 24);
assert!(offset_of!(TSGlobalDeclaration, declare) == 88);
assert!(size_of::<TSModuleBlock>() == 64);
assert!(align_of::<TSModuleBlock>() == 8);
assert!(offset_of!(TSModuleBlock, span) == 0);
assert!(offset_of!(TSModuleBlock, node_id) == 8);
assert!(offset_of!(TSModuleBlock, directives) == 16);
assert!(offset_of!(TSModuleBlock, body) == 40);
assert!(size_of::<TSTypeLiteral>() == 40);
assert!(align_of::<TSTypeLiteral>() == 8);
assert!(offset_of!(TSTypeLiteral, span) == 0);
assert!(offset_of!(TSTypeLiteral, node_id) == 8);
assert!(offset_of!(TSTypeLiteral, members) == 16);
assert!(size_of::<TSInferType>() == 24);
assert!(align_of::<TSInferType>() == 8);
assert!(offset_of!(TSInferType, span) == 0);
assert!(offset_of!(TSInferType, node_id) == 8);
assert!(offset_of!(TSInferType, type_parameter) == 16);
assert!(size_of::<TSTypeQuery>() == 40);
assert!(align_of::<TSTypeQuery>() == 8);
assert!(offset_of!(TSTypeQuery, span) == 0);
assert!(offset_of!(TSTypeQuery, node_id) == 8);
assert!(offset_of!(TSTypeQuery, expr_name) == 16);
assert!(offset_of!(TSTypeQuery, type_arguments) == 32);
assert!(size_of::<TSTypeQueryExprName>() == 16);
assert!(align_of::<TSTypeQueryExprName>() == 8);
assert!(size_of::<TSImportType>() == 96);
assert!(align_of::<TSImportType>() == 8);
assert!(offset_of!(TSImportType, span) == 0);
assert!(offset_of!(TSImportType, node_id) == 8);
assert!(offset_of!(TSImportType, source) == 16);
assert!(offset_of!(TSImportType, options) == 64);
assert!(offset_of!(TSImportType, qualifier) == 72);
assert!(offset_of!(TSImportType, type_arguments) == 88);
assert!(size_of::<TSImportTypeQualifier>() == 16);
assert!(align_of::<TSImportTypeQualifier>() == 8);
assert!(size_of::<TSImportTypeQualifiedName>() == 64);
assert!(align_of::<TSImportTypeQualifiedName>() == 8);
assert!(offset_of!(TSImportTypeQualifiedName, span) == 0);
assert!(offset_of!(TSImportTypeQualifiedName, node_id) == 8);
assert!(offset_of!(TSImportTypeQualifiedName, left) == 16);
assert!(offset_of!(TSImportTypeQualifiedName, right) == 32);
assert!(size_of::<TSFunctionType>() == 48);
assert!(align_of::<TSFunctionType>() == 8);
assert!(offset_of!(TSFunctionType, span) == 0);
assert!(offset_of!(TSFunctionType, node_id) == 8);
assert!(offset_of!(TSFunctionType, scope_id) == 12);
assert!(offset_of!(TSFunctionType, type_parameters) == 16);
assert!(offset_of!(TSFunctionType, this_param) == 24);
assert!(offset_of!(TSFunctionType, params) == 32);
assert!(offset_of!(TSFunctionType, return_type) == 40);
assert!(size_of::<TSConstructorType>() == 48);
assert!(align_of::<TSConstructorType>() == 8);
assert!(offset_of!(TSConstructorType, span) == 0);
assert!(offset_of!(TSConstructorType, node_id) == 8);
assert!(offset_of!(TSConstructorType, scope_id) == 12);
assert!(offset_of!(TSConstructorType, type_parameters) == 16);
assert!(offset_of!(TSConstructorType, params) == 24);
assert!(offset_of!(TSConstructorType, return_type) == 32);
assert!(offset_of!(TSConstructorType, r#abstract) == 40);
assert!(size_of::<TSMappedType>() == 104);
assert!(align_of::<TSMappedType>() == 8);
assert!(offset_of!(TSMappedType, span) == 0);
assert!(offset_of!(TSMappedType, node_id) == 8);
assert!(offset_of!(TSMappedType, scope_id) == 12);
assert!(offset_of!(TSMappedType, key) == 16);
assert!(offset_of!(TSMappedType, constraint) == 48);
assert!(offset_of!(TSMappedType, name_type) == 64);
assert!(offset_of!(TSMappedType, type_annotation) == 80);
assert!(offset_of!(TSMappedType, optional) == 96);
assert!(offset_of!(TSMappedType, readonly) == 97);
assert!(size_of::<TSMappedTypeModifierOperator>() == 1);
assert!(align_of::<TSMappedTypeModifierOperator>() == 1);
assert!(size_of::<TSTemplateLiteralType>() == 64);
assert!(align_of::<TSTemplateLiteralType>() == 8);
assert!(offset_of!(TSTemplateLiteralType, span) == 0);
assert!(offset_of!(TSTemplateLiteralType, node_id) == 8);
assert!(offset_of!(TSTemplateLiteralType, quasis) == 16);
assert!(offset_of!(TSTemplateLiteralType, types) == 40);
assert!(size_of::<TSAsExpression>() == 48);
assert!(align_of::<TSAsExpression>() == 8);
assert!(offset_of!(TSAsExpression, span) == 0);
assert!(offset_of!(TSAsExpression, node_id) == 8);
assert!(offset_of!(TSAsExpression, expression) == 16);
assert!(offset_of!(TSAsExpression, type_annotation) == 32);
assert!(size_of::<TSSatisfiesExpression>() == 48);
assert!(align_of::<TSSatisfiesExpression>() == 8);
assert!(offset_of!(TSSatisfiesExpression, span) == 0);
assert!(offset_of!(TSSatisfiesExpression, node_id) == 8);
assert!(offset_of!(TSSatisfiesExpression, expression) == 16);
assert!(offset_of!(TSSatisfiesExpression, type_annotation) == 32);
assert!(size_of::<TSTypeAssertion>() == 48);
assert!(align_of::<TSTypeAssertion>() == 8);
assert!(offset_of!(TSTypeAssertion, span) == 0);
assert!(offset_of!(TSTypeAssertion, node_id) == 8);
assert!(offset_of!(TSTypeAssertion, type_annotation) == 16);
assert!(offset_of!(TSTypeAssertion, expression) == 32);
assert!(size_of::<TSImportEqualsDeclaration>() == 64);
assert!(align_of::<TSImportEqualsDeclaration>() == 8);
assert!(offset_of!(TSImportEqualsDeclaration, span) == 0);
assert!(offset_of!(TSImportEqualsDeclaration, node_id) == 8);
assert!(offset_of!(TSImportEqualsDeclaration, import_kind) == 12);
assert!(offset_of!(TSImportEqualsDeclaration, id) == 16);
assert!(offset_of!(TSImportEqualsDeclaration, module_reference) == 48);
assert!(size_of::<TSModuleReference>() == 16);
assert!(align_of::<TSModuleReference>() == 8);
assert!(size_of::<TSExternalModuleReference>() == 64);
assert!(align_of::<TSExternalModuleReference>() == 8);
assert!(offset_of!(TSExternalModuleReference, span) == 0);
assert!(offset_of!(TSExternalModuleReference, node_id) == 8);
assert!(offset_of!(TSExternalModuleReference, expression) == 16);
assert!(size_of::<TSNonNullExpression>() == 32);
assert!(align_of::<TSNonNullExpression>() == 8);
assert!(offset_of!(TSNonNullExpression, span) == 0);
assert!(offset_of!(TSNonNullExpression, node_id) == 8);
assert!(offset_of!(TSNonNullExpression, expression) == 16);
assert!(size_of::<Decorator>() == 32);
assert!(align_of::<Decorator>() == 8);
assert!(offset_of!(Decorator, span) == 0);
assert!(offset_of!(Decorator, node_id) == 8);
assert!(offset_of!(Decorator, expression) == 16);
assert!(size_of::<TSExportAssignment>() == 32);
assert!(align_of::<TSExportAssignment>() == 8);
assert!(offset_of!(TSExportAssignment, span) == 0);
assert!(offset_of!(TSExportAssignment, node_id) == 8);
assert!(offset_of!(TSExportAssignment, expression) == 16);
assert!(size_of::<TSNamespaceExportDeclaration>() == 48);
assert!(align_of::<TSNamespaceExportDeclaration>() == 8);
assert!(offset_of!(TSNamespaceExportDeclaration, span) == 0);
assert!(offset_of!(TSNamespaceExportDeclaration, node_id) == 8);
assert!(offset_of!(TSNamespaceExportDeclaration, id) == 16);
assert!(size_of::<TSInstantiationExpression>() == 40);
assert!(align_of::<TSInstantiationExpression>() == 8);
assert!(offset_of!(TSInstantiationExpression, span) == 0);
assert!(offset_of!(TSInstantiationExpression, node_id) == 8);
assert!(offset_of!(TSInstantiationExpression, expression) == 16);
assert!(offset_of!(TSInstantiationExpression, type_arguments) == 32);
assert!(size_of::<ImportOrExportKind>() == 1);
assert!(align_of::<ImportOrExportKind>() == 1);
assert!(size_of::<JSDocNullableType>() == 32);
assert!(align_of::<JSDocNullableType>() == 8);
assert!(offset_of!(JSDocNullableType, span) == 0);
assert!(offset_of!(JSDocNullableType, node_id) == 8);
assert!(offset_of!(JSDocNullableType, postfix) == 12);
assert!(offset_of!(JSDocNullableType, type_annotation) == 16);
assert!(size_of::<JSDocNonNullableType>() == 32);
assert!(align_of::<JSDocNonNullableType>() == 8);
assert!(offset_of!(JSDocNonNullableType, span) == 0);
assert!(offset_of!(JSDocNonNullableType, node_id) == 8);
assert!(offset_of!(JSDocNonNullableType, postfix) == 12);
assert!(offset_of!(JSDocNonNullableType, type_annotation) == 16);
assert!(size_of::<JSDocUnknownType>() == 16);
assert!(align_of::<JSDocUnknownType>() == 8);
assert!(offset_of!(JSDocUnknownType, span) == 0);
assert!(offset_of!(JSDocUnknownType, node_id) == 8);
assert!(size_of::<CommentKind>() == 1);
assert!(align_of::<CommentKind>() == 1);
assert!(size_of::<CommentPosition>() == 1);
assert!(align_of::<CommentPosition>() == 1);
assert!(size_of::<CommentContent>() == 1);
assert!(align_of::<CommentContent>() == 1);
assert!(size_of::<CommentNewlines>() == 1);
assert!(align_of::<CommentNewlines>() == 1);
assert!(size_of::<Comment>() == 16);
assert!(align_of::<Comment>() == 8);
assert!(offset_of!(Comment, span) == 0);
assert!(offset_of!(Comment, attached_to) == 8);
assert!(offset_of!(Comment, kind) == 12);
assert!(offset_of!(Comment, position) == 13);
assert!(offset_of!(Comment, newlines) == 14);
assert!(offset_of!(Comment, content) == 15);
};
#[cfg(target_pointer_width = "32")]
const _: () = if cfg!(target_family = "wasm") || align_of::<u64>() == 8 {
assert!(size_of::<Program>() == 96);
assert!(align_of::<Program>() == 4);
assert!(offset_of!(Program, span) == 0);
assert!(offset_of!(Program, node_id) == 8);
assert!(offset_of!(Program, scope_id) == 12);
assert!(offset_of!(Program, source_text) == 16);
assert!(offset_of!(Program, comments) == 24);
assert!(offset_of!(Program, hashbang) == 40);
assert!(offset_of!(Program, directives) == 60);
assert!(offset_of!(Program, body) == 76);
assert!(offset_of!(Program, source_type) == 92);
assert!(size_of::<Expression>() == 8);
assert!(align_of::<Expression>() == 4);
assert!(size_of::<IdentifierName>() == 24);
assert!(align_of::<IdentifierName>() == 4);
assert!(offset_of!(IdentifierName, span) == 0);
assert!(offset_of!(IdentifierName, node_id) == 8);
assert!(offset_of!(IdentifierName, name) == 12);
assert!(size_of::<IdentifierReference>() == 28);
assert!(align_of::<IdentifierReference>() == 4);
assert!(offset_of!(IdentifierReference, span) == 0);
assert!(offset_of!(IdentifierReference, node_id) == 8);
assert!(offset_of!(IdentifierReference, reference_id) == 12);
assert!(offset_of!(IdentifierReference, name) == 16);
assert!(size_of::<BindingIdentifier>() == 28);
assert!(align_of::<BindingIdentifier>() == 4);
assert!(offset_of!(BindingIdentifier, span) == 0);
assert!(offset_of!(BindingIdentifier, node_id) == 8);
assert!(offset_of!(BindingIdentifier, symbol_id) == 12);
assert!(offset_of!(BindingIdentifier, name) == 16);
assert!(size_of::<LabelIdentifier>() == 24);
assert!(align_of::<LabelIdentifier>() == 4);
assert!(offset_of!(LabelIdentifier, span) == 0);
assert!(offset_of!(LabelIdentifier, node_id) == 8);
assert!(offset_of!(LabelIdentifier, name) == 12);
assert!(size_of::<ThisExpression>() == 12);
assert!(align_of::<ThisExpression>() == 4);
assert!(offset_of!(ThisExpression, span) == 0);
assert!(offset_of!(ThisExpression, node_id) == 8);
assert!(size_of::<ArrayExpression>() == 28);
assert!(align_of::<ArrayExpression>() == 4);
assert!(offset_of!(ArrayExpression, span) == 0);
assert!(offset_of!(ArrayExpression, node_id) == 8);
assert!(offset_of!(ArrayExpression, elements) == 12);
assert!(size_of::<ArrayExpressionElement>() == 16);
assert!(align_of::<ArrayExpressionElement>() == 4);
assert!(size_of::<Elision>() == 12);
assert!(align_of::<Elision>() == 4);
assert!(offset_of!(Elision, span) == 0);
assert!(offset_of!(Elision, node_id) == 8);
assert!(size_of::<ObjectExpression>() == 28);
assert!(align_of::<ObjectExpression>() == 4);
assert!(offset_of!(ObjectExpression, span) == 0);
assert!(offset_of!(ObjectExpression, node_id) == 8);
assert!(offset_of!(ObjectExpression, properties) == 12);
assert!(size_of::<ObjectPropertyKind>() == 8);
assert!(align_of::<ObjectPropertyKind>() == 4);
assert!(size_of::<ObjectProperty>() == 32);
assert!(align_of::<ObjectProperty>() == 4);
assert!(offset_of!(ObjectProperty, span) == 0);
assert!(offset_of!(ObjectProperty, node_id) == 8);
assert!(offset_of!(ObjectProperty, kind) == 12);
assert!(offset_of!(ObjectProperty, method) == 13);
assert!(offset_of!(ObjectProperty, shorthand) == 14);
assert!(offset_of!(ObjectProperty, computed) == 15);
assert!(offset_of!(ObjectProperty, key) == 16);
assert!(offset_of!(ObjectProperty, value) == 24);
assert!(size_of::<PropertyKey>() == 8);
assert!(align_of::<PropertyKey>() == 4);
assert!(size_of::<PropertyKind>() == 1);
assert!(align_of::<PropertyKind>() == 1);
assert!(size_of::<TemplateLiteral>() == 44);
assert!(align_of::<TemplateLiteral>() == 4);
assert!(offset_of!(TemplateLiteral, span) == 0);
assert!(offset_of!(TemplateLiteral, node_id) == 8);
assert!(offset_of!(TemplateLiteral, quasis) == 12);
assert!(offset_of!(TemplateLiteral, expressions) == 28);
assert!(size_of::<TaggedTemplateExpression>() == 68);
assert!(align_of::<TaggedTemplateExpression>() == 4);
assert!(offset_of!(TaggedTemplateExpression, span) == 0);
assert!(offset_of!(TaggedTemplateExpression, node_id) == 8);
assert!(offset_of!(TaggedTemplateExpression, tag) == 12);
assert!(offset_of!(TaggedTemplateExpression, type_arguments) == 20);
assert!(offset_of!(TaggedTemplateExpression, quasi) == 24);
assert!(size_of::<TemplateElement>() == 32);
assert!(align_of::<TemplateElement>() == 4);
assert!(offset_of!(TemplateElement, span) == 0);
assert!(offset_of!(TemplateElement, node_id) == 8);
assert!(offset_of!(TemplateElement, tail) == 12);
assert!(offset_of!(TemplateElement, lone_surrogates) == 13);
assert!(offset_of!(TemplateElement, value) == 16);
assert!(size_of::<TemplateElementValue>() == 16);
assert!(align_of::<TemplateElementValue>() == 4);
assert!(offset_of!(TemplateElementValue, raw) == 0);
assert!(offset_of!(TemplateElementValue, cooked) == 8);
assert!(size_of::<MemberExpression>() == 8);
assert!(align_of::<MemberExpression>() == 4);
assert!(size_of::<ComputedMemberExpression>() == 32);
assert!(align_of::<ComputedMemberExpression>() == 4);
assert!(offset_of!(ComputedMemberExpression, span) == 0);
assert!(offset_of!(ComputedMemberExpression, node_id) == 8);
assert!(offset_of!(ComputedMemberExpression, optional) == 12);
assert!(offset_of!(ComputedMemberExpression, object) == 16);
assert!(offset_of!(ComputedMemberExpression, expression) == 24);
assert!(size_of::<StaticMemberExpression>() == 48);
assert!(align_of::<StaticMemberExpression>() == 4);
assert!(offset_of!(StaticMemberExpression, span) == 0);
assert!(offset_of!(StaticMemberExpression, node_id) == 8);
assert!(offset_of!(StaticMemberExpression, optional) == 12);
assert!(offset_of!(StaticMemberExpression, object) == 16);
assert!(offset_of!(StaticMemberExpression, property) == 24);
assert!(size_of::<PrivateFieldExpression>() == 48);
assert!(align_of::<PrivateFieldExpression>() == 4);
assert!(offset_of!(PrivateFieldExpression, span) == 0);
assert!(offset_of!(PrivateFieldExpression, node_id) == 8);
assert!(offset_of!(PrivateFieldExpression, optional) == 12);
assert!(offset_of!(PrivateFieldExpression, object) == 16);
assert!(offset_of!(PrivateFieldExpression, field) == 24);
assert!(size_of::<CallExpression>() == 44);
assert!(align_of::<CallExpression>() == 4);
assert!(offset_of!(CallExpression, span) == 0);
assert!(offset_of!(CallExpression, node_id) == 8);
assert!(offset_of!(CallExpression, optional) == 12);
assert!(offset_of!(CallExpression, pure) == 13);
assert!(offset_of!(CallExpression, callee) == 16);
assert!(offset_of!(CallExpression, type_arguments) == 24);
assert!(offset_of!(CallExpression, arguments) == 28);
assert!(size_of::<NewExpression>() == 44);
assert!(align_of::<NewExpression>() == 4);
assert!(offset_of!(NewExpression, span) == 0);
assert!(offset_of!(NewExpression, node_id) == 8);
assert!(offset_of!(NewExpression, pure) == 12);
assert!(offset_of!(NewExpression, callee) == 16);
assert!(offset_of!(NewExpression, type_arguments) == 24);
assert!(offset_of!(NewExpression, arguments) == 28);
assert!(size_of::<MetaProperty>() == 60);
assert!(align_of::<MetaProperty>() == 4);
assert!(offset_of!(MetaProperty, span) == 0);
assert!(offset_of!(MetaProperty, node_id) == 8);
assert!(offset_of!(MetaProperty, meta) == 12);
assert!(offset_of!(MetaProperty, property) == 36);
assert!(size_of::<SpreadElement>() == 20);
assert!(align_of::<SpreadElement>() == 4);
assert!(offset_of!(SpreadElement, span) == 0);
assert!(offset_of!(SpreadElement, node_id) == 8);
assert!(offset_of!(SpreadElement, argument) == 12);
assert!(size_of::<Argument>() == 8);
assert!(align_of::<Argument>() == 4);
assert!(size_of::<UpdateExpression>() == 24);
assert!(align_of::<UpdateExpression>() == 4);
assert!(offset_of!(UpdateExpression, span) == 0);
assert!(offset_of!(UpdateExpression, node_id) == 8);
assert!(offset_of!(UpdateExpression, operator) == 12);
assert!(offset_of!(UpdateExpression, prefix) == 13);
assert!(offset_of!(UpdateExpression, argument) == 16);
assert!(size_of::<UnaryExpression>() == 24);
assert!(align_of::<UnaryExpression>() == 4);
assert!(offset_of!(UnaryExpression, span) == 0);
assert!(offset_of!(UnaryExpression, node_id) == 8);
assert!(offset_of!(UnaryExpression, operator) == 12);
assert!(offset_of!(UnaryExpression, argument) == 16);
assert!(size_of::<BinaryExpression>() == 32);
assert!(align_of::<BinaryExpression>() == 4);
assert!(offset_of!(BinaryExpression, span) == 0);
assert!(offset_of!(BinaryExpression, node_id) == 8);
assert!(offset_of!(BinaryExpression, operator) == 12);
assert!(offset_of!(BinaryExpression, left) == 16);
assert!(offset_of!(BinaryExpression, right) == 24);
assert!(size_of::<PrivateInExpression>() == 44);
assert!(align_of::<PrivateInExpression>() == 4);
assert!(offset_of!(PrivateInExpression, span) == 0);
assert!(offset_of!(PrivateInExpression, node_id) == 8);
assert!(offset_of!(PrivateInExpression, left) == 12);
assert!(offset_of!(PrivateInExpression, right) == 36);
assert!(size_of::<LogicalExpression>() == 32);
assert!(align_of::<LogicalExpression>() == 4);
assert!(offset_of!(LogicalExpression, span) == 0);
assert!(offset_of!(LogicalExpression, node_id) == 8);
assert!(offset_of!(LogicalExpression, operator) == 12);
assert!(offset_of!(LogicalExpression, left) == 16);
assert!(offset_of!(LogicalExpression, right) == 24);
assert!(size_of::<ConditionalExpression>() == 36);
assert!(align_of::<ConditionalExpression>() == 4);
assert!(offset_of!(ConditionalExpression, span) == 0);
assert!(offset_of!(ConditionalExpression, node_id) == 8);
assert!(offset_of!(ConditionalExpression, test) == 12);
assert!(offset_of!(ConditionalExpression, consequent) == 20);
assert!(offset_of!(ConditionalExpression, alternate) == 28);
assert!(size_of::<AssignmentExpression>() == 32);
assert!(align_of::<AssignmentExpression>() == 4);
assert!(offset_of!(AssignmentExpression, span) == 0);
assert!(offset_of!(AssignmentExpression, node_id) == 8);
assert!(offset_of!(AssignmentExpression, operator) == 12);
assert!(offset_of!(AssignmentExpression, left) == 16);
assert!(offset_of!(AssignmentExpression, right) == 24);
assert!(size_of::<AssignmentTarget>() == 8);
assert!(align_of::<AssignmentTarget>() == 4);
assert!(size_of::<SimpleAssignmentTarget>() == 8);
assert!(align_of::<SimpleAssignmentTarget>() == 4);
assert!(size_of::<AssignmentTargetPattern>() == 8);
assert!(align_of::<AssignmentTargetPattern>() == 4);
assert!(size_of::<ArrayAssignmentTarget>() == 32);
assert!(align_of::<ArrayAssignmentTarget>() == 4);
assert!(offset_of!(ArrayAssignmentTarget, span) == 0);
assert!(offset_of!(ArrayAssignmentTarget, node_id) == 8);
assert!(offset_of!(ArrayAssignmentTarget, elements) == 12);
assert!(offset_of!(ArrayAssignmentTarget, rest) == 28);
assert!(size_of::<ObjectAssignmentTarget>() == 32);
assert!(align_of::<ObjectAssignmentTarget>() == 4);
assert!(offset_of!(ObjectAssignmentTarget, span) == 0);
assert!(offset_of!(ObjectAssignmentTarget, node_id) == 8);
assert!(offset_of!(ObjectAssignmentTarget, properties) == 12);
assert!(offset_of!(ObjectAssignmentTarget, rest) == 28);
assert!(size_of::<AssignmentTargetRest>() == 20);
assert!(align_of::<AssignmentTargetRest>() == 4);
assert!(offset_of!(AssignmentTargetRest, span) == 0);
assert!(offset_of!(AssignmentTargetRest, node_id) == 8);
assert!(offset_of!(AssignmentTargetRest, target) == 12);
assert!(size_of::<AssignmentTargetMaybeDefault>() == 8);
assert!(align_of::<AssignmentTargetMaybeDefault>() == 4);
assert!(size_of::<AssignmentTargetWithDefault>() == 28);
assert!(align_of::<AssignmentTargetWithDefault>() == 4);
assert!(offset_of!(AssignmentTargetWithDefault, span) == 0);
assert!(offset_of!(AssignmentTargetWithDefault, node_id) == 8);
assert!(offset_of!(AssignmentTargetWithDefault, binding) == 12);
assert!(offset_of!(AssignmentTargetWithDefault, init) == 20);
assert!(size_of::<AssignmentTargetProperty>() == 8);
assert!(align_of::<AssignmentTargetProperty>() == 4);
assert!(size_of::<AssignmentTargetPropertyIdentifier>() == 48);
assert!(align_of::<AssignmentTargetPropertyIdentifier>() == 4);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, span) == 0);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, node_id) == 8);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, binding) == 12);
assert!(offset_of!(AssignmentTargetPropertyIdentifier, init) == 40);
assert!(size_of::<AssignmentTargetPropertyProperty>() == 32);
assert!(align_of::<AssignmentTargetPropertyProperty>() == 4);
assert!(offset_of!(AssignmentTargetPropertyProperty, span) == 0);
assert!(offset_of!(AssignmentTargetPropertyProperty, node_id) == 8);
assert!(offset_of!(AssignmentTargetPropertyProperty, computed) == 12);
assert!(offset_of!(AssignmentTargetPropertyProperty, name) == 16);
assert!(offset_of!(AssignmentTargetPropertyProperty, binding) == 24);
assert!(size_of::<SequenceExpression>() == 28);
assert!(align_of::<SequenceExpression>() == 4);
assert!(offset_of!(SequenceExpression, span) == 0);
assert!(offset_of!(SequenceExpression, node_id) == 8);
assert!(offset_of!(SequenceExpression, expressions) == 12);
assert!(size_of::<Super>() == 12);
assert!(align_of::<Super>() == 4);
assert!(offset_of!(Super, span) == 0);
assert!(offset_of!(Super, node_id) == 8);
assert!(size_of::<AwaitExpression>() == 20);
assert!(align_of::<AwaitExpression>() == 4);
assert!(offset_of!(AwaitExpression, span) == 0);
assert!(offset_of!(AwaitExpression, node_id) == 8);
assert!(offset_of!(AwaitExpression, argument) == 12);
assert!(size_of::<ChainExpression>() == 20);
assert!(align_of::<ChainExpression>() == 4);
assert!(offset_of!(ChainExpression, span) == 0);
assert!(offset_of!(ChainExpression, node_id) == 8);
assert!(offset_of!(ChainExpression, expression) == 12);
assert!(size_of::<ChainElement>() == 8);
assert!(align_of::<ChainElement>() == 4);
assert!(size_of::<ParenthesizedExpression>() == 20);
assert!(align_of::<ParenthesizedExpression>() == 4);
assert!(offset_of!(ParenthesizedExpression, span) == 0);
assert!(offset_of!(ParenthesizedExpression, node_id) == 8);
assert!(offset_of!(ParenthesizedExpression, expression) == 12);
assert!(size_of::<Statement>() == 8);
assert!(align_of::<Statement>() == 4);
assert!(size_of::<Directive>() == 52);
assert!(align_of::<Directive>() == 4);
assert!(offset_of!(Directive, span) == 0);
assert!(offset_of!(Directive, node_id) == 8);
assert!(offset_of!(Directive, expression) == 12);
assert!(offset_of!(Directive, directive) == 44);
assert!(size_of::<Hashbang>() == 20);
assert!(align_of::<Hashbang>() == 4);
assert!(offset_of!(Hashbang, span) == 0);
assert!(offset_of!(Hashbang, node_id) == 8);
assert!(offset_of!(Hashbang, value) == 12);
assert!(size_of::<BlockStatement>() == 32);
assert!(align_of::<BlockStatement>() == 4);
assert!(offset_of!(BlockStatement, span) == 0);
assert!(offset_of!(BlockStatement, node_id) == 8);
assert!(offset_of!(BlockStatement, scope_id) == 12);
assert!(offset_of!(BlockStatement, body) == 16);
assert!(size_of::<Declaration>() == 8);
assert!(align_of::<Declaration>() == 4);
assert!(size_of::<VariableDeclaration>() == 32);
assert!(align_of::<VariableDeclaration>() == 4);
assert!(offset_of!(VariableDeclaration, span) == 0);
assert!(offset_of!(VariableDeclaration, node_id) == 8);
assert!(offset_of!(VariableDeclaration, kind) == 12);
assert!(offset_of!(VariableDeclaration, declare) == 13);
assert!(offset_of!(VariableDeclaration, declarations) == 16);
assert!(size_of::<VariableDeclarationKind>() == 1);
assert!(align_of::<VariableDeclarationKind>() == 1);
assert!(size_of::<VariableDeclarator>() == 36);
assert!(align_of::<VariableDeclarator>() == 4);
assert!(offset_of!(VariableDeclarator, span) == 0);
assert!(offset_of!(VariableDeclarator, node_id) == 8);
assert!(offset_of!(VariableDeclarator, kind) == 12);
assert!(offset_of!(VariableDeclarator, definite) == 13);
assert!(offset_of!(VariableDeclarator, id) == 16);
assert!(offset_of!(VariableDeclarator, type_annotation) == 24);
assert!(offset_of!(VariableDeclarator, init) == 28);
assert!(size_of::<EmptyStatement>() == 12);
assert!(align_of::<EmptyStatement>() == 4);
assert!(offset_of!(EmptyStatement, span) == 0);
assert!(offset_of!(EmptyStatement, node_id) == 8);
assert!(size_of::<ExpressionStatement>() == 20);
assert!(align_of::<ExpressionStatement>() == 4);
assert!(offset_of!(ExpressionStatement, span) == 0);
assert!(offset_of!(ExpressionStatement, node_id) == 8);
assert!(offset_of!(ExpressionStatement, expression) == 12);
assert!(size_of::<IfStatement>() == 36);
assert!(align_of::<IfStatement>() == 4);
assert!(offset_of!(IfStatement, span) == 0);
assert!(offset_of!(IfStatement, node_id) == 8);
assert!(offset_of!(IfStatement, test) == 12);
assert!(offset_of!(IfStatement, consequent) == 20);
assert!(offset_of!(IfStatement, alternate) == 28);
assert!(size_of::<DoWhileStatement>() == 28);
assert!(align_of::<DoWhileStatement>() == 4);
assert!(offset_of!(DoWhileStatement, span) == 0);
assert!(offset_of!(DoWhileStatement, node_id) == 8);
assert!(offset_of!(DoWhileStatement, body) == 12);
assert!(offset_of!(DoWhileStatement, test) == 20);
assert!(size_of::<WhileStatement>() == 28);
assert!(align_of::<WhileStatement>() == 4);
assert!(offset_of!(WhileStatement, span) == 0);
assert!(offset_of!(WhileStatement, node_id) == 8);
assert!(offset_of!(WhileStatement, test) == 12);
assert!(offset_of!(WhileStatement, body) == 20);
assert!(size_of::<ForStatement>() == 48);
assert!(align_of::<ForStatement>() == 4);
assert!(offset_of!(ForStatement, span) == 0);
assert!(offset_of!(ForStatement, node_id) == 8);
assert!(offset_of!(ForStatement, scope_id) == 12);
assert!(offset_of!(ForStatement, init) == 16);
assert!(offset_of!(ForStatement, test) == 24);
assert!(offset_of!(ForStatement, update) == 32);
assert!(offset_of!(ForStatement, body) == 40);
assert!(size_of::<ForStatementInit>() == 8);
assert!(align_of::<ForStatementInit>() == 4);
assert!(size_of::<ForInStatement>() == 40);
assert!(align_of::<ForInStatement>() == 4);
assert!(offset_of!(ForInStatement, span) == 0);
assert!(offset_of!(ForInStatement, node_id) == 8);
assert!(offset_of!(ForInStatement, scope_id) == 12);
assert!(offset_of!(ForInStatement, left) == 16);
assert!(offset_of!(ForInStatement, right) == 24);
assert!(offset_of!(ForInStatement, body) == 32);
assert!(size_of::<ForStatementLeft>() == 8);
assert!(align_of::<ForStatementLeft>() == 4);
assert!(size_of::<ForOfStatement>() == 44);
assert!(align_of::<ForOfStatement>() == 4);
assert!(offset_of!(ForOfStatement, span) == 0);
assert!(offset_of!(ForOfStatement, node_id) == 8);
assert!(offset_of!(ForOfStatement, scope_id) == 12);
assert!(offset_of!(ForOfStatement, left) == 16);
assert!(offset_of!(ForOfStatement, right) == 24);
assert!(offset_of!(ForOfStatement, body) == 32);
assert!(offset_of!(ForOfStatement, r#await) == 40);
assert!(size_of::<ContinueStatement>() == 36);
assert!(align_of::<ContinueStatement>() == 4);
assert!(offset_of!(ContinueStatement, span) == 0);
assert!(offset_of!(ContinueStatement, node_id) == 8);
assert!(offset_of!(ContinueStatement, label) == 12);
assert!(size_of::<BreakStatement>() == 36);
assert!(align_of::<BreakStatement>() == 4);
assert!(offset_of!(BreakStatement, span) == 0);
assert!(offset_of!(BreakStatement, node_id) == 8);
assert!(offset_of!(BreakStatement, label) == 12);
assert!(size_of::<ReturnStatement>() == 20);
assert!(align_of::<ReturnStatement>() == 4);
assert!(offset_of!(ReturnStatement, span) == 0);
assert!(offset_of!(ReturnStatement, node_id) == 8);
assert!(offset_of!(ReturnStatement, argument) == 12);
assert!(size_of::<WithStatement>() == 32);
assert!(align_of::<WithStatement>() == 4);
assert!(offset_of!(WithStatement, span) == 0);
assert!(offset_of!(WithStatement, node_id) == 8);
assert!(offset_of!(WithStatement, scope_id) == 12);
assert!(offset_of!(WithStatement, object) == 16);
assert!(offset_of!(WithStatement, body) == 24);
assert!(size_of::<SwitchStatement>() == 40);
assert!(align_of::<SwitchStatement>() == 4);
assert!(offset_of!(SwitchStatement, span) == 0);
assert!(offset_of!(SwitchStatement, node_id) == 8);
assert!(offset_of!(SwitchStatement, scope_id) == 12);
assert!(offset_of!(SwitchStatement, discriminant) == 16);
assert!(offset_of!(SwitchStatement, cases) == 24);
assert!(size_of::<SwitchCase>() == 36);
assert!(align_of::<SwitchCase>() == 4);
assert!(offset_of!(SwitchCase, span) == 0);
assert!(offset_of!(SwitchCase, node_id) == 8);
assert!(offset_of!(SwitchCase, test) == 12);
assert!(offset_of!(SwitchCase, consequent) == 20);
assert!(size_of::<LabeledStatement>() == 44);
assert!(align_of::<LabeledStatement>() == 4);
assert!(offset_of!(LabeledStatement, span) == 0);
assert!(offset_of!(LabeledStatement, node_id) == 8);
assert!(offset_of!(LabeledStatement, label) == 12);
assert!(offset_of!(LabeledStatement, body) == 36);
assert!(size_of::<ThrowStatement>() == 20);
assert!(align_of::<ThrowStatement>() == 4);
assert!(offset_of!(ThrowStatement, span) == 0);
assert!(offset_of!(ThrowStatement, node_id) == 8);
assert!(offset_of!(ThrowStatement, argument) == 12);
assert!(size_of::<TryStatement>() == 24);
assert!(align_of::<TryStatement>() == 4);
assert!(offset_of!(TryStatement, span) == 0);
assert!(offset_of!(TryStatement, node_id) == 8);
assert!(offset_of!(TryStatement, block) == 12);
assert!(offset_of!(TryStatement, handler) == 16);
assert!(offset_of!(TryStatement, finalizer) == 20);
assert!(size_of::<CatchClause>() == 44);
assert!(align_of::<CatchClause>() == 4);
assert!(offset_of!(CatchClause, span) == 0);
assert!(offset_of!(CatchClause, node_id) == 8);
assert!(offset_of!(CatchClause, scope_id) == 12);
assert!(offset_of!(CatchClause, param) == 16);
assert!(offset_of!(CatchClause, body) == 40);
assert!(size_of::<CatchParameter>() == 24);
assert!(align_of::<CatchParameter>() == 4);
assert!(offset_of!(CatchParameter, span) == 0);
assert!(offset_of!(CatchParameter, node_id) == 8);
assert!(offset_of!(CatchParameter, pattern) == 12);
assert!(offset_of!(CatchParameter, type_annotation) == 20);
assert!(size_of::<DebuggerStatement>() == 12);
assert!(align_of::<DebuggerStatement>() == 4);
assert!(offset_of!(DebuggerStatement, span) == 0);
assert!(offset_of!(DebuggerStatement, node_id) == 8);
assert!(size_of::<BindingPattern>() == 8);
assert!(align_of::<BindingPattern>() == 4);
assert!(size_of::<AssignmentPattern>() == 28);
assert!(align_of::<AssignmentPattern>() == 4);
assert!(offset_of!(AssignmentPattern, span) == 0);
assert!(offset_of!(AssignmentPattern, node_id) == 8);
assert!(offset_of!(AssignmentPattern, left) == 12);
assert!(offset_of!(AssignmentPattern, right) == 20);
assert!(size_of::<ObjectPattern>() == 32);
assert!(align_of::<ObjectPattern>() == 4);
assert!(offset_of!(ObjectPattern, span) == 0);
assert!(offset_of!(ObjectPattern, node_id) == 8);
assert!(offset_of!(ObjectPattern, properties) == 12);
assert!(offset_of!(ObjectPattern, rest) == 28);
assert!(size_of::<BindingProperty>() == 32);
assert!(align_of::<BindingProperty>() == 4);
assert!(offset_of!(BindingProperty, span) == 0);
assert!(offset_of!(BindingProperty, node_id) == 8);
assert!(offset_of!(BindingProperty, shorthand) == 12);
assert!(offset_of!(BindingProperty, computed) == 13);
assert!(offset_of!(BindingProperty, key) == 16);
assert!(offset_of!(BindingProperty, value) == 24);
assert!(size_of::<ArrayPattern>() == 32);
assert!(align_of::<ArrayPattern>() == 4);
assert!(offset_of!(ArrayPattern, span) == 0);
assert!(offset_of!(ArrayPattern, node_id) == 8);
assert!(offset_of!(ArrayPattern, elements) == 12);
assert!(offset_of!(ArrayPattern, rest) == 28);
assert!(size_of::<BindingRestElement>() == 20);
assert!(align_of::<BindingRestElement>() == 4);
assert!(offset_of!(BindingRestElement, span) == 0);
assert!(offset_of!(BindingRestElement, node_id) == 8);
assert!(offset_of!(BindingRestElement, argument) == 12);
assert!(size_of::<Function>() == 72);
assert!(align_of::<Function>() == 4);
assert!(offset_of!(Function, span) == 0);
assert!(offset_of!(Function, node_id) == 8);
assert!(offset_of!(Function, scope_id) == 12);
assert!(offset_of!(Function, id) == 16);
assert!(offset_of!(Function, type_parameters) == 44);
assert!(offset_of!(Function, this_param) == 48);
assert!(offset_of!(Function, params) == 52);
assert!(offset_of!(Function, return_type) == 56);
assert!(offset_of!(Function, body) == 60);
assert!(offset_of!(Function, r#type) == 64);
assert!(offset_of!(Function, generator) == 65);
assert!(offset_of!(Function, r#async) == 66);
assert!(offset_of!(Function, declare) == 67);
assert!(offset_of!(Function, pure) == 68);
assert!(offset_of!(Function, pife) == 69);
assert!(size_of::<FunctionType>() == 1);
assert!(align_of::<FunctionType>() == 1);
assert!(size_of::<FormalParameters>() == 36);
assert!(align_of::<FormalParameters>() == 4);
assert!(offset_of!(FormalParameters, span) == 0);
assert!(offset_of!(FormalParameters, node_id) == 8);
assert!(offset_of!(FormalParameters, kind) == 12);
assert!(offset_of!(FormalParameters, items) == 16);
assert!(offset_of!(FormalParameters, rest) == 32);
assert!(size_of::<FormalParameter>() == 48);
assert!(align_of::<FormalParameter>() == 4);
assert!(offset_of!(FormalParameter, span) == 0);
assert!(offset_of!(FormalParameter, node_id) == 8);
assert!(offset_of!(FormalParameter, optional) == 12);
assert!(offset_of!(FormalParameter, accessibility) == 13);
assert!(offset_of!(FormalParameter, readonly) == 14);
assert!(offset_of!(FormalParameter, r#override) == 15);
assert!(offset_of!(FormalParameter, decorators) == 16);
assert!(offset_of!(FormalParameter, pattern) == 32);
assert!(offset_of!(FormalParameter, type_annotation) == 40);
assert!(offset_of!(FormalParameter, initializer) == 44);
assert!(size_of::<FormalParameterKind>() == 1);
assert!(align_of::<FormalParameterKind>() == 1);
assert!(size_of::<FormalParameterRest>() == 52);
assert!(align_of::<FormalParameterRest>() == 4);
assert!(offset_of!(FormalParameterRest, span) == 0);
assert!(offset_of!(FormalParameterRest, node_id) == 8);
assert!(offset_of!(FormalParameterRest, decorators) == 12);
assert!(offset_of!(FormalParameterRest, rest) == 28);
assert!(offset_of!(FormalParameterRest, type_annotation) == 48);
assert!(size_of::<FunctionBody>() == 44);
assert!(align_of::<FunctionBody>() == 4);
assert!(offset_of!(FunctionBody, span) == 0);
assert!(offset_of!(FunctionBody, node_id) == 8);
assert!(offset_of!(FunctionBody, directives) == 12);
assert!(offset_of!(FunctionBody, statements) == 28);
assert!(size_of::<ArrowFunctionExpression>() == 36);
assert!(align_of::<ArrowFunctionExpression>() == 4);
assert!(offset_of!(ArrowFunctionExpression, span) == 0);
assert!(offset_of!(ArrowFunctionExpression, node_id) == 8);
assert!(offset_of!(ArrowFunctionExpression, scope_id) == 12);
assert!(offset_of!(ArrowFunctionExpression, type_parameters) == 16);
assert!(offset_of!(ArrowFunctionExpression, params) == 20);
assert!(offset_of!(ArrowFunctionExpression, return_type) == 24);
assert!(offset_of!(ArrowFunctionExpression, body) == 28);
assert!(offset_of!(ArrowFunctionExpression, expression) == 32);
assert!(offset_of!(ArrowFunctionExpression, r#async) == 33);
assert!(offset_of!(ArrowFunctionExpression, pure) == 34);
assert!(offset_of!(ArrowFunctionExpression, pife) == 35);
assert!(size_of::<YieldExpression>() == 24);
assert!(align_of::<YieldExpression>() == 4);
assert!(offset_of!(YieldExpression, span) == 0);
assert!(offset_of!(YieldExpression, node_id) == 8);
assert!(offset_of!(YieldExpression, delegate) == 12);
assert!(offset_of!(YieldExpression, argument) == 16);
assert!(size_of::<Class>() == 100);
assert!(align_of::<Class>() == 4);
assert!(offset_of!(Class, span) == 0);
assert!(offset_of!(Class, node_id) == 8);
assert!(offset_of!(Class, scope_id) == 12);
assert!(offset_of!(Class, decorators) == 16);
assert!(offset_of!(Class, id) == 32);
assert!(offset_of!(Class, type_parameters) == 60);
assert!(offset_of!(Class, super_class) == 64);
assert!(offset_of!(Class, super_type_arguments) == 72);
assert!(offset_of!(Class, implements) == 76);
assert!(offset_of!(Class, body) == 92);
assert!(offset_of!(Class, r#type) == 96);
assert!(offset_of!(Class, r#abstract) == 97);
assert!(offset_of!(Class, declare) == 98);
assert!(size_of::<ClassType>() == 1);
assert!(align_of::<ClassType>() == 1);
assert!(size_of::<ClassBody>() == 28);
assert!(align_of::<ClassBody>() == 4);
assert!(offset_of!(ClassBody, span) == 0);
assert!(offset_of!(ClassBody, node_id) == 8);
assert!(offset_of!(ClassBody, body) == 12);
assert!(size_of::<ClassElement>() == 8);
assert!(align_of::<ClassElement>() == 4);
assert!(size_of::<MethodDefinition>() == 48);
assert!(align_of::<MethodDefinition>() == 4);
assert!(offset_of!(MethodDefinition, span) == 0);
assert!(offset_of!(MethodDefinition, node_id) == 8);
assert!(offset_of!(MethodDefinition, r#type) == 12);
assert!(offset_of!(MethodDefinition, kind) == 13);
assert!(offset_of!(MethodDefinition, computed) == 14);
assert!(offset_of!(MethodDefinition, r#static) == 15);
assert!(offset_of!(MethodDefinition, decorators) == 16);
assert!(offset_of!(MethodDefinition, key) == 32);
assert!(offset_of!(MethodDefinition, value) == 40);
assert!(offset_of!(MethodDefinition, r#override) == 44);
assert!(offset_of!(MethodDefinition, optional) == 45);
assert!(offset_of!(MethodDefinition, accessibility) == 46);
assert!(size_of::<MethodDefinitionType>() == 1);
assert!(align_of::<MethodDefinitionType>() == 1);
assert!(size_of::<PropertyDefinition>() == 60);
assert!(align_of::<PropertyDefinition>() == 4);
assert!(offset_of!(PropertyDefinition, span) == 0);
assert!(offset_of!(PropertyDefinition, node_id) == 8);
assert!(offset_of!(PropertyDefinition, r#type) == 12);
assert!(offset_of!(PropertyDefinition, computed) == 13);
assert!(offset_of!(PropertyDefinition, r#static) == 14);
assert!(offset_of!(PropertyDefinition, declare) == 15);
assert!(offset_of!(PropertyDefinition, decorators) == 16);
assert!(offset_of!(PropertyDefinition, key) == 32);
assert!(offset_of!(PropertyDefinition, type_annotation) == 40);
assert!(offset_of!(PropertyDefinition, value) == 44);
assert!(offset_of!(PropertyDefinition, r#override) == 52);
assert!(offset_of!(PropertyDefinition, optional) == 53);
assert!(offset_of!(PropertyDefinition, definite) == 54);
assert!(offset_of!(PropertyDefinition, readonly) == 55);
assert!(offset_of!(PropertyDefinition, accessibility) == 56);
assert!(size_of::<PropertyDefinitionType>() == 1);
assert!(align_of::<PropertyDefinitionType>() == 1);
assert!(size_of::<MethodDefinitionKind>() == 1);
assert!(align_of::<MethodDefinitionKind>() == 1);
assert!(size_of::<PrivateIdentifier>() == 24);
assert!(align_of::<PrivateIdentifier>() == 4);
assert!(offset_of!(PrivateIdentifier, span) == 0);
assert!(offset_of!(PrivateIdentifier, node_id) == 8);
assert!(offset_of!(PrivateIdentifier, name) == 12);
assert!(size_of::<StaticBlock>() == 32);
assert!(align_of::<StaticBlock>() == 4);
assert!(offset_of!(StaticBlock, span) == 0);
assert!(offset_of!(StaticBlock, node_id) == 8);
assert!(offset_of!(StaticBlock, scope_id) == 12);
assert!(offset_of!(StaticBlock, body) == 16);
assert!(size_of::<ModuleDeclaration>() == 8);
assert!(align_of::<ModuleDeclaration>() == 4);
assert!(size_of::<AccessorPropertyType>() == 1);
assert!(align_of::<AccessorPropertyType>() == 1);
assert!(size_of::<AccessorProperty>() == 56);
assert!(align_of::<AccessorProperty>() == 4);
assert!(offset_of!(AccessorProperty, span) == 0);
assert!(offset_of!(AccessorProperty, node_id) == 8);
assert!(offset_of!(AccessorProperty, r#type) == 12);
assert!(offset_of!(AccessorProperty, computed) == 13);
assert!(offset_of!(AccessorProperty, r#static) == 14);
assert!(offset_of!(AccessorProperty, r#override) == 15);
assert!(offset_of!(AccessorProperty, decorators) == 16);
assert!(offset_of!(AccessorProperty, key) == 32);
assert!(offset_of!(AccessorProperty, type_annotation) == 40);
assert!(offset_of!(AccessorProperty, value) == 44);
assert!(offset_of!(AccessorProperty, definite) == 52);
assert!(offset_of!(AccessorProperty, accessibility) == 53);
assert!(size_of::<ImportExpression>() == 32);
assert!(align_of::<ImportExpression>() == 4);
assert!(offset_of!(ImportExpression, span) == 0);
assert!(offset_of!(ImportExpression, node_id) == 8);
assert!(offset_of!(ImportExpression, phase) == 12);
assert!(offset_of!(ImportExpression, source) == 16);
assert!(offset_of!(ImportExpression, options) == 24);
assert!(size_of::<ImportDeclaration>() == 68);
assert!(align_of::<ImportDeclaration>() == 4);
assert!(offset_of!(ImportDeclaration, span) == 0);
assert!(offset_of!(ImportDeclaration, node_id) == 8);
assert!(offset_of!(ImportDeclaration, phase) == 12);
assert!(offset_of!(ImportDeclaration, import_kind) == 13);
assert!(offset_of!(ImportDeclaration, specifiers) == 16);
assert!(offset_of!(ImportDeclaration, source) == 32);
assert!(offset_of!(ImportDeclaration, with_clause) == 64);
assert!(size_of::<ImportPhase>() == 1);
assert!(align_of::<ImportPhase>() == 1);
assert!(size_of::<ImportDeclarationSpecifier>() == 8);
assert!(align_of::<ImportDeclarationSpecifier>() == 4);
assert!(size_of::<ImportSpecifier>() == 80);
assert!(align_of::<ImportSpecifier>() == 4);
assert!(offset_of!(ImportSpecifier, span) == 0);
assert!(offset_of!(ImportSpecifier, node_id) == 8);
assert!(offset_of!(ImportSpecifier, import_kind) == 12);
assert!(offset_of!(ImportSpecifier, imported) == 16);
assert!(offset_of!(ImportSpecifier, local) == 52);
assert!(size_of::<ImportDefaultSpecifier>() == 40);
assert!(align_of::<ImportDefaultSpecifier>() == 4);
assert!(offset_of!(ImportDefaultSpecifier, span) == 0);
assert!(offset_of!(ImportDefaultSpecifier, node_id) == 8);
assert!(offset_of!(ImportDefaultSpecifier, local) == 12);
assert!(size_of::<ImportNamespaceSpecifier>() == 40);
assert!(align_of::<ImportNamespaceSpecifier>() == 4);
assert!(offset_of!(ImportNamespaceSpecifier, span) == 0);
assert!(offset_of!(ImportNamespaceSpecifier, node_id) == 8);
assert!(offset_of!(ImportNamespaceSpecifier, local) == 12);
assert!(size_of::<WithClause>() == 32);
assert!(align_of::<WithClause>() == 4);
assert!(offset_of!(WithClause, span) == 0);
assert!(offset_of!(WithClause, node_id) == 8);
assert!(offset_of!(WithClause, keyword) == 12);
assert!(offset_of!(WithClause, with_entries) == 16);
assert!(size_of::<WithClauseKeyword>() == 1);
assert!(align_of::<WithClauseKeyword>() == 1);
assert!(size_of::<ImportAttribute>() == 80);
assert!(align_of::<ImportAttribute>() == 4);
assert!(offset_of!(ImportAttribute, span) == 0);
assert!(offset_of!(ImportAttribute, node_id) == 8);
assert!(offset_of!(ImportAttribute, key) == 12);
assert!(offset_of!(ImportAttribute, value) == 48);
assert!(size_of::<ImportAttributeKey>() == 36);
assert!(align_of::<ImportAttributeKey>() == 4);
assert!(size_of::<ExportNamedDeclaration>() == 76);
assert!(align_of::<ExportNamedDeclaration>() == 4);
assert!(offset_of!(ExportNamedDeclaration, span) == 0);
assert!(offset_of!(ExportNamedDeclaration, node_id) == 8);
assert!(offset_of!(ExportNamedDeclaration, export_kind) == 12);
assert!(offset_of!(ExportNamedDeclaration, declaration) == 16);
assert!(offset_of!(ExportNamedDeclaration, specifiers) == 24);
assert!(offset_of!(ExportNamedDeclaration, source) == 40);
assert!(offset_of!(ExportNamedDeclaration, with_clause) == 72);
assert!(size_of::<ExportDefaultDeclaration>() == 20);
assert!(align_of::<ExportDefaultDeclaration>() == 4);
assert!(offset_of!(ExportDefaultDeclaration, span) == 0);
assert!(offset_of!(ExportDefaultDeclaration, node_id) == 8);
assert!(offset_of!(ExportDefaultDeclaration, declaration) == 12);
assert!(size_of::<ExportAllDeclaration>() == 88);
assert!(align_of::<ExportAllDeclaration>() == 4);
assert!(offset_of!(ExportAllDeclaration, span) == 0);
assert!(offset_of!(ExportAllDeclaration, node_id) == 8);
assert!(offset_of!(ExportAllDeclaration, export_kind) == 12);
assert!(offset_of!(ExportAllDeclaration, exported) == 16);
assert!(offset_of!(ExportAllDeclaration, source) == 52);
assert!(offset_of!(ExportAllDeclaration, with_clause) == 84);
assert!(size_of::<ExportSpecifier>() == 88);
assert!(align_of::<ExportSpecifier>() == 4);
assert!(offset_of!(ExportSpecifier, span) == 0);
assert!(offset_of!(ExportSpecifier, node_id) == 8);
assert!(offset_of!(ExportSpecifier, export_kind) == 12);
assert!(offset_of!(ExportSpecifier, local) == 16);
assert!(offset_of!(ExportSpecifier, exported) == 52);
assert!(size_of::<ExportDefaultDeclarationKind>() == 8);
assert!(align_of::<ExportDefaultDeclarationKind>() == 4);
assert!(size_of::<ModuleExportName>() == 36);
assert!(align_of::<ModuleExportName>() == 4);
assert!(size_of::<V8IntrinsicExpression>() == 52);
assert!(align_of::<V8IntrinsicExpression>() == 4);
assert!(offset_of!(V8IntrinsicExpression, span) == 0);
assert!(offset_of!(V8IntrinsicExpression, node_id) == 8);
assert!(offset_of!(V8IntrinsicExpression, name) == 12);
assert!(offset_of!(V8IntrinsicExpression, arguments) == 36);
assert!(size_of::<BooleanLiteral>() == 16);
assert!(align_of::<BooleanLiteral>() == 4);
assert!(offset_of!(BooleanLiteral, span) == 0);
assert!(offset_of!(BooleanLiteral, node_id) == 8);
assert!(offset_of!(BooleanLiteral, value) == 12);
assert!(size_of::<NullLiteral>() == 12);
assert!(align_of::<NullLiteral>() == 4);
assert!(offset_of!(NullLiteral, span) == 0);
assert!(offset_of!(NullLiteral, node_id) == 8);
assert!(size_of::<NumericLiteral>() == 32);
assert!(align_of::<NumericLiteral>() == 8);
assert!(offset_of!(NumericLiteral, span) == 0);
assert!(offset_of!(NumericLiteral, node_id) == 8);
assert!(offset_of!(NumericLiteral, base) == 12);
assert!(offset_of!(NumericLiteral, raw) == 16);
assert!(offset_of!(NumericLiteral, value) == 24);
assert!(size_of::<StringLiteral>() == 32);
assert!(align_of::<StringLiteral>() == 4);
assert!(offset_of!(StringLiteral, span) == 0);
assert!(offset_of!(StringLiteral, node_id) == 8);
assert!(offset_of!(StringLiteral, lone_surrogates) == 12);
assert!(offset_of!(StringLiteral, value) == 16);
assert!(offset_of!(StringLiteral, raw) == 24);
assert!(size_of::<BigIntLiteral>() == 32);
assert!(align_of::<BigIntLiteral>() == 4);
assert!(offset_of!(BigIntLiteral, span) == 0);
assert!(offset_of!(BigIntLiteral, node_id) == 8);
assert!(offset_of!(BigIntLiteral, base) == 12);
assert!(offset_of!(BigIntLiteral, value) == 16);
assert!(offset_of!(BigIntLiteral, raw) == 24);
assert!(size_of::<RegExpLiteral>() == 36);
assert!(align_of::<RegExpLiteral>() == 4);
assert!(offset_of!(RegExpLiteral, span) == 0);
assert!(offset_of!(RegExpLiteral, node_id) == 8);
assert!(offset_of!(RegExpLiteral, regex) == 12);
assert!(offset_of!(RegExpLiteral, raw) == 28);
assert!(size_of::<RegExp>() == 16);
assert!(align_of::<RegExp>() == 4);
assert!(offset_of!(RegExp, pattern) == 0);
assert!(offset_of!(RegExp, flags) == 12);
assert!(size_of::<RegExpPattern>() == 12);
assert!(align_of::<RegExpPattern>() == 4);
assert!(offset_of!(RegExpPattern, text) == 0);
assert!(offset_of!(RegExpPattern, pattern) == 8);
assert!(size_of::<RegExpFlags>() == 1);
assert!(align_of::<RegExpFlags>() == 1);
assert!(size_of::<JSXElement>() == 36);
assert!(align_of::<JSXElement>() == 4);
assert!(offset_of!(JSXElement, span) == 0);
assert!(offset_of!(JSXElement, node_id) == 8);
assert!(offset_of!(JSXElement, opening_element) == 12);
assert!(offset_of!(JSXElement, children) == 16);
assert!(offset_of!(JSXElement, closing_element) == 32);
assert!(size_of::<JSXOpeningElement>() == 40);
assert!(align_of::<JSXOpeningElement>() == 4);
assert!(offset_of!(JSXOpeningElement, span) == 0);
assert!(offset_of!(JSXOpeningElement, node_id) == 8);
assert!(offset_of!(JSXOpeningElement, name) == 12);
assert!(offset_of!(JSXOpeningElement, type_arguments) == 20);
assert!(offset_of!(JSXOpeningElement, attributes) == 24);
assert!(size_of::<JSXClosingElement>() == 20);
assert!(align_of::<JSXClosingElement>() == 4);
assert!(offset_of!(JSXClosingElement, span) == 0);
assert!(offset_of!(JSXClosingElement, node_id) == 8);
assert!(offset_of!(JSXClosingElement, name) == 12);
assert!(size_of::<JSXFragment>() == 52);
assert!(align_of::<JSXFragment>() == 4);
assert!(offset_of!(JSXFragment, span) == 0);
assert!(offset_of!(JSXFragment, node_id) == 8);
assert!(offset_of!(JSXFragment, opening_fragment) == 12);
assert!(offset_of!(JSXFragment, children) == 24);
assert!(offset_of!(JSXFragment, closing_fragment) == 40);
assert!(size_of::<JSXOpeningFragment>() == 12);
assert!(align_of::<JSXOpeningFragment>() == 4);
assert!(offset_of!(JSXOpeningFragment, span) == 0);
assert!(offset_of!(JSXOpeningFragment, node_id) == 8);
assert!(size_of::<JSXClosingFragment>() == 12);
assert!(align_of::<JSXClosingFragment>() == 4);
assert!(offset_of!(JSXClosingFragment, span) == 0);
assert!(offset_of!(JSXClosingFragment, node_id) == 8);
assert!(size_of::<JSXElementName>() == 8);
assert!(align_of::<JSXElementName>() == 4);
assert!(size_of::<JSXNamespacedName>() == 52);
assert!(align_of::<JSXNamespacedName>() == 4);
assert!(offset_of!(JSXNamespacedName, span) == 0);
assert!(offset_of!(JSXNamespacedName, node_id) == 8);
assert!(offset_of!(JSXNamespacedName, namespace) == 12);
assert!(offset_of!(JSXNamespacedName, name) == 32);
assert!(size_of::<JSXMemberExpression>() == 40);
assert!(align_of::<JSXMemberExpression>() == 4);
assert!(offset_of!(JSXMemberExpression, span) == 0);
assert!(offset_of!(JSXMemberExpression, node_id) == 8);
assert!(offset_of!(JSXMemberExpression, object) == 12);
assert!(offset_of!(JSXMemberExpression, property) == 20);
assert!(size_of::<JSXMemberExpressionObject>() == 8);
assert!(align_of::<JSXMemberExpressionObject>() == 4);
assert!(size_of::<JSXExpressionContainer>() == 28);
assert!(align_of::<JSXExpressionContainer>() == 4);
assert!(offset_of!(JSXExpressionContainer, span) == 0);
assert!(offset_of!(JSXExpressionContainer, node_id) == 8);
assert!(offset_of!(JSXExpressionContainer, expression) == 12);
assert!(size_of::<JSXExpression>() == 16);
assert!(align_of::<JSXExpression>() == 4);
assert!(size_of::<JSXEmptyExpression>() == 12);
assert!(align_of::<JSXEmptyExpression>() == 4);
assert!(offset_of!(JSXEmptyExpression, span) == 0);
assert!(offset_of!(JSXEmptyExpression, node_id) == 8);
assert!(size_of::<JSXAttributeItem>() == 8);
assert!(align_of::<JSXAttributeItem>() == 4);
assert!(size_of::<JSXAttribute>() == 28);
assert!(align_of::<JSXAttribute>() == 4);
assert!(offset_of!(JSXAttribute, span) == 0);
assert!(offset_of!(JSXAttribute, node_id) == 8);
assert!(offset_of!(JSXAttribute, name) == 12);
assert!(offset_of!(JSXAttribute, value) == 20);
assert!(size_of::<JSXSpreadAttribute>() == 20);
assert!(align_of::<JSXSpreadAttribute>() == 4);
assert!(offset_of!(JSXSpreadAttribute, span) == 0);
assert!(offset_of!(JSXSpreadAttribute, node_id) == 8);
assert!(offset_of!(JSXSpreadAttribute, argument) == 12);
assert!(size_of::<JSXAttributeName>() == 8);
assert!(align_of::<JSXAttributeName>() == 4);
assert!(size_of::<JSXAttributeValue>() == 8);
assert!(align_of::<JSXAttributeValue>() == 4);
assert!(size_of::<JSXIdentifier>() == 20);
assert!(align_of::<JSXIdentifier>() == 4);
assert!(offset_of!(JSXIdentifier, span) == 0);
assert!(offset_of!(JSXIdentifier, node_id) == 8);
assert!(offset_of!(JSXIdentifier, name) == 12);
assert!(size_of::<JSXChild>() == 8);
assert!(align_of::<JSXChild>() == 4);
assert!(size_of::<JSXSpreadChild>() == 20);
assert!(align_of::<JSXSpreadChild>() == 4);
assert!(offset_of!(JSXSpreadChild, span) == 0);
assert!(offset_of!(JSXSpreadChild, node_id) == 8);
assert!(offset_of!(JSXSpreadChild, expression) == 12);
assert!(size_of::<JSXText>() == 28);
assert!(align_of::<JSXText>() == 4);
assert!(offset_of!(JSXText, span) == 0);
assert!(offset_of!(JSXText, node_id) == 8);
assert!(offset_of!(JSXText, value) == 12);
assert!(offset_of!(JSXText, raw) == 20);
assert!(size_of::<TSThisParameter>() == 24);
assert!(align_of::<TSThisParameter>() == 4);
assert!(offset_of!(TSThisParameter, span) == 0);
assert!(offset_of!(TSThisParameter, node_id) == 8);
assert!(offset_of!(TSThisParameter, this_span) == 12);
assert!(offset_of!(TSThisParameter, type_annotation) == 20);
assert!(size_of::<TSEnumDeclaration>() == 76);
assert!(align_of::<TSEnumDeclaration>() == 4);
assert!(offset_of!(TSEnumDeclaration, span) == 0);
assert!(offset_of!(TSEnumDeclaration, node_id) == 8);
assert!(offset_of!(TSEnumDeclaration, r#const) == 12);
assert!(offset_of!(TSEnumDeclaration, declare) == 13);
assert!(offset_of!(TSEnumDeclaration, id) == 16);
assert!(offset_of!(TSEnumDeclaration, body) == 44);
assert!(size_of::<TSEnumBody>() == 32);
assert!(align_of::<TSEnumBody>() == 4);
assert!(offset_of!(TSEnumBody, span) == 0);
assert!(offset_of!(TSEnumBody, node_id) == 8);
assert!(offset_of!(TSEnumBody, scope_id) == 12);
assert!(offset_of!(TSEnumBody, members) == 16);
assert!(size_of::<TSEnumMember>() == 28);
assert!(align_of::<TSEnumMember>() == 4);
assert!(offset_of!(TSEnumMember, span) == 0);
assert!(offset_of!(TSEnumMember, node_id) == 8);
assert!(offset_of!(TSEnumMember, id) == 12);
assert!(offset_of!(TSEnumMember, initializer) == 20);
assert!(size_of::<TSEnumMemberName>() == 8);
assert!(align_of::<TSEnumMemberName>() == 4);
assert!(size_of::<TSTypeAnnotation>() == 20);
assert!(align_of::<TSTypeAnnotation>() == 4);
assert!(offset_of!(TSTypeAnnotation, span) == 0);
assert!(offset_of!(TSTypeAnnotation, node_id) == 8);
assert!(offset_of!(TSTypeAnnotation, type_annotation) == 12);
assert!(size_of::<TSLiteralType>() == 20);
assert!(align_of::<TSLiteralType>() == 4);
assert!(offset_of!(TSLiteralType, span) == 0);
assert!(offset_of!(TSLiteralType, node_id) == 8);
assert!(offset_of!(TSLiteralType, literal) == 12);
assert!(size_of::<TSLiteral>() == 8);
assert!(align_of::<TSLiteral>() == 4);
assert!(size_of::<TSType>() == 8);
assert!(align_of::<TSType>() == 4);
assert!(size_of::<TSConditionalType>() == 48);
assert!(align_of::<TSConditionalType>() == 4);
assert!(offset_of!(TSConditionalType, span) == 0);
assert!(offset_of!(TSConditionalType, node_id) == 8);
assert!(offset_of!(TSConditionalType, scope_id) == 12);
assert!(offset_of!(TSConditionalType, check_type) == 16);
assert!(offset_of!(TSConditionalType, extends_type) == 24);
assert!(offset_of!(TSConditionalType, true_type) == 32);
assert!(offset_of!(TSConditionalType, false_type) == 40);
assert!(size_of::<TSUnionType>() == 28);
assert!(align_of::<TSUnionType>() == 4);
assert!(offset_of!(TSUnionType, span) == 0);
assert!(offset_of!(TSUnionType, node_id) == 8);
assert!(offset_of!(TSUnionType, types) == 12);
assert!(size_of::<TSIntersectionType>() == 28);
assert!(align_of::<TSIntersectionType>() == 4);
assert!(offset_of!(TSIntersectionType, span) == 0);
assert!(offset_of!(TSIntersectionType, node_id) == 8);
assert!(offset_of!(TSIntersectionType, types) == 12);
assert!(size_of::<TSParenthesizedType>() == 20);
assert!(align_of::<TSParenthesizedType>() == 4);
assert!(offset_of!(TSParenthesizedType, span) == 0);
assert!(offset_of!(TSParenthesizedType, node_id) == 8);
assert!(offset_of!(TSParenthesizedType, type_annotation) == 12);
assert!(size_of::<TSTypeOperator>() == 24);
assert!(align_of::<TSTypeOperator>() == 4);
assert!(offset_of!(TSTypeOperator, span) == 0);
assert!(offset_of!(TSTypeOperator, node_id) == 8);
assert!(offset_of!(TSTypeOperator, operator) == 12);
assert!(offset_of!(TSTypeOperator, type_annotation) == 16);
assert!(size_of::<TSTypeOperatorOperator>() == 1);
assert!(align_of::<TSTypeOperatorOperator>() == 1);
assert!(size_of::<TSArrayType>() == 20);
assert!(align_of::<TSArrayType>() == 4);
assert!(offset_of!(TSArrayType, span) == 0);
assert!(offset_of!(TSArrayType, node_id) == 8);
assert!(offset_of!(TSArrayType, element_type) == 12);
assert!(size_of::<TSIndexedAccessType>() == 28);
assert!(align_of::<TSIndexedAccessType>() == 4);
assert!(offset_of!(TSIndexedAccessType, span) == 0);
assert!(offset_of!(TSIndexedAccessType, node_id) == 8);
assert!(offset_of!(TSIndexedAccessType, object_type) == 12);
assert!(offset_of!(TSIndexedAccessType, index_type) == 20);
assert!(size_of::<TSTupleType>() == 28);
assert!(align_of::<TSTupleType>() == 4);
assert!(offset_of!(TSTupleType, span) == 0);
assert!(offset_of!(TSTupleType, node_id) == 8);
assert!(offset_of!(TSTupleType, element_types) == 12);
assert!(size_of::<TSNamedTupleMember>() == 48);
assert!(align_of::<TSNamedTupleMember>() == 4);
assert!(offset_of!(TSNamedTupleMember, span) == 0);
assert!(offset_of!(TSNamedTupleMember, node_id) == 8);
assert!(offset_of!(TSNamedTupleMember, optional) == 12);
assert!(offset_of!(TSNamedTupleMember, label) == 16);
assert!(offset_of!(TSNamedTupleMember, element_type) == 40);
assert!(size_of::<TSOptionalType>() == 20);
assert!(align_of::<TSOptionalType>() == 4);
assert!(offset_of!(TSOptionalType, span) == 0);
assert!(offset_of!(TSOptionalType, node_id) == 8);
assert!(offset_of!(TSOptionalType, type_annotation) == 12);
assert!(size_of::<TSRestType>() == 20);
assert!(align_of::<TSRestType>() == 4);
assert!(offset_of!(TSRestType, span) == 0);
assert!(offset_of!(TSRestType, node_id) == 8);
assert!(offset_of!(TSRestType, type_annotation) == 12);
assert!(size_of::<TSTupleElement>() == 8);
assert!(align_of::<TSTupleElement>() == 4);
assert!(size_of::<TSAnyKeyword>() == 12);
assert!(align_of::<TSAnyKeyword>() == 4);
assert!(offset_of!(TSAnyKeyword, span) == 0);
assert!(offset_of!(TSAnyKeyword, node_id) == 8);
assert!(size_of::<TSStringKeyword>() == 12);
assert!(align_of::<TSStringKeyword>() == 4);
assert!(offset_of!(TSStringKeyword, span) == 0);
assert!(offset_of!(TSStringKeyword, node_id) == 8);
assert!(size_of::<TSBooleanKeyword>() == 12);
assert!(align_of::<TSBooleanKeyword>() == 4);
assert!(offset_of!(TSBooleanKeyword, span) == 0);
assert!(offset_of!(TSBooleanKeyword, node_id) == 8);
assert!(size_of::<TSNumberKeyword>() == 12);
assert!(align_of::<TSNumberKeyword>() == 4);
assert!(offset_of!(TSNumberKeyword, span) == 0);
assert!(offset_of!(TSNumberKeyword, node_id) == 8);
assert!(size_of::<TSNeverKeyword>() == 12);
assert!(align_of::<TSNeverKeyword>() == 4);
assert!(offset_of!(TSNeverKeyword, span) == 0);
assert!(offset_of!(TSNeverKeyword, node_id) == 8);
assert!(size_of::<TSIntrinsicKeyword>() == 12);
assert!(align_of::<TSIntrinsicKeyword>() == 4);
assert!(offset_of!(TSIntrinsicKeyword, span) == 0);
assert!(offset_of!(TSIntrinsicKeyword, node_id) == 8);
assert!(size_of::<TSUnknownKeyword>() == 12);
assert!(align_of::<TSUnknownKeyword>() == 4);
assert!(offset_of!(TSUnknownKeyword, span) == 0);
assert!(offset_of!(TSUnknownKeyword, node_id) == 8);
assert!(size_of::<TSNullKeyword>() == 12);
assert!(align_of::<TSNullKeyword>() == 4);
assert!(offset_of!(TSNullKeyword, span) == 0);
assert!(offset_of!(TSNullKeyword, node_id) == 8);
assert!(size_of::<TSUndefinedKeyword>() == 12);
assert!(align_of::<TSUndefinedKeyword>() == 4);
assert!(offset_of!(TSUndefinedKeyword, span) == 0);
assert!(offset_of!(TSUndefinedKeyword, node_id) == 8);
assert!(size_of::<TSVoidKeyword>() == 12);
assert!(align_of::<TSVoidKeyword>() == 4);
assert!(offset_of!(TSVoidKeyword, span) == 0);
assert!(offset_of!(TSVoidKeyword, node_id) == 8);
assert!(size_of::<TSSymbolKeyword>() == 12);
assert!(align_of::<TSSymbolKeyword>() == 4);
assert!(offset_of!(TSSymbolKeyword, span) == 0);
assert!(offset_of!(TSSymbolKeyword, node_id) == 8);
assert!(size_of::<TSThisType>() == 12);
assert!(align_of::<TSThisType>() == 4);
assert!(offset_of!(TSThisType, span) == 0);
assert!(offset_of!(TSThisType, node_id) == 8);
assert!(size_of::<TSObjectKeyword>() == 12);
assert!(align_of::<TSObjectKeyword>() == 4);
assert!(offset_of!(TSObjectKeyword, span) == 0);
assert!(offset_of!(TSObjectKeyword, node_id) == 8);
assert!(size_of::<TSBigIntKeyword>() == 12);
assert!(align_of::<TSBigIntKeyword>() == 4);
assert!(offset_of!(TSBigIntKeyword, span) == 0);
assert!(offset_of!(TSBigIntKeyword, node_id) == 8);
assert!(size_of::<TSTypeReference>() == 24);
assert!(align_of::<TSTypeReference>() == 4);
assert!(offset_of!(TSTypeReference, span) == 0);
assert!(offset_of!(TSTypeReference, node_id) == 8);
assert!(offset_of!(TSTypeReference, type_name) == 12);
assert!(offset_of!(TSTypeReference, type_arguments) == 20);
assert!(size_of::<TSTypeName>() == 8);
assert!(align_of::<TSTypeName>() == 4);
assert!(size_of::<TSQualifiedName>() == 44);
assert!(align_of::<TSQualifiedName>() == 4);
assert!(offset_of!(TSQualifiedName, span) == 0);
assert!(offset_of!(TSQualifiedName, node_id) == 8);
assert!(offset_of!(TSQualifiedName, left) == 12);
assert!(offset_of!(TSQualifiedName, right) == 20);
assert!(size_of::<TSTypeParameterInstantiation>() == 28);
assert!(align_of::<TSTypeParameterInstantiation>() == 4);
assert!(offset_of!(TSTypeParameterInstantiation, span) == 0);
assert!(offset_of!(TSTypeParameterInstantiation, node_id) == 8);
assert!(offset_of!(TSTypeParameterInstantiation, params) == 12);
assert!(size_of::<TSTypeParameter>() == 60);
assert!(align_of::<TSTypeParameter>() == 4);
assert!(offset_of!(TSTypeParameter, span) == 0);
assert!(offset_of!(TSTypeParameter, node_id) == 8);
assert!(offset_of!(TSTypeParameter, r#in) == 12);
assert!(offset_of!(TSTypeParameter, out) == 13);
assert!(offset_of!(TSTypeParameter, r#const) == 14);
assert!(offset_of!(TSTypeParameter, name) == 16);
assert!(offset_of!(TSTypeParameter, constraint) == 44);
assert!(offset_of!(TSTypeParameter, default) == 52);
assert!(size_of::<TSTypeParameterDeclaration>() == 28);
assert!(align_of::<TSTypeParameterDeclaration>() == 4);
assert!(offset_of!(TSTypeParameterDeclaration, span) == 0);
assert!(offset_of!(TSTypeParameterDeclaration, node_id) == 8);
assert!(offset_of!(TSTypeParameterDeclaration, params) == 12);
assert!(size_of::<TSTypeAliasDeclaration>() == 60);
assert!(align_of::<TSTypeAliasDeclaration>() == 4);
assert!(offset_of!(TSTypeAliasDeclaration, span) == 0);
assert!(offset_of!(TSTypeAliasDeclaration, node_id) == 8);
assert!(offset_of!(TSTypeAliasDeclaration, scope_id) == 12);
assert!(offset_of!(TSTypeAliasDeclaration, id) == 16);
assert!(offset_of!(TSTypeAliasDeclaration, type_parameters) == 44);
assert!(offset_of!(TSTypeAliasDeclaration, type_annotation) == 48);
assert!(offset_of!(TSTypeAliasDeclaration, declare) == 56);
assert!(size_of::<TSAccessibility>() == 1);
assert!(align_of::<TSAccessibility>() == 1);
assert!(size_of::<TSClassImplements>() == 24);
assert!(align_of::<TSClassImplements>() == 4);
assert!(offset_of!(TSClassImplements, span) == 0);
assert!(offset_of!(TSClassImplements, node_id) == 8);
assert!(offset_of!(TSClassImplements, expression) == 12);
assert!(offset_of!(TSClassImplements, type_arguments) == 20);
assert!(size_of::<TSInterfaceDeclaration>() == 72);
assert!(align_of::<TSInterfaceDeclaration>() == 4);
assert!(offset_of!(TSInterfaceDeclaration, span) == 0);
assert!(offset_of!(TSInterfaceDeclaration, node_id) == 8);
assert!(offset_of!(TSInterfaceDeclaration, scope_id) == 12);
assert!(offset_of!(TSInterfaceDeclaration, id) == 16);
assert!(offset_of!(TSInterfaceDeclaration, type_parameters) == 44);
assert!(offset_of!(TSInterfaceDeclaration, extends) == 48);
assert!(offset_of!(TSInterfaceDeclaration, body) == 64);
assert!(offset_of!(TSInterfaceDeclaration, declare) == 68);
assert!(size_of::<TSInterfaceBody>() == 28);
assert!(align_of::<TSInterfaceBody>() == 4);
assert!(offset_of!(TSInterfaceBody, span) == 0);
assert!(offset_of!(TSInterfaceBody, node_id) == 8);
assert!(offset_of!(TSInterfaceBody, body) == 12);
assert!(size_of::<TSPropertySignature>() == 28);
assert!(align_of::<TSPropertySignature>() == 4);
assert!(offset_of!(TSPropertySignature, span) == 0);
assert!(offset_of!(TSPropertySignature, node_id) == 8);
assert!(offset_of!(TSPropertySignature, computed) == 12);
assert!(offset_of!(TSPropertySignature, optional) == 13);
assert!(offset_of!(TSPropertySignature, readonly) == 14);
assert!(offset_of!(TSPropertySignature, key) == 16);
assert!(offset_of!(TSPropertySignature, type_annotation) == 24);
assert!(size_of::<TSSignature>() == 8);
assert!(align_of::<TSSignature>() == 4);
assert!(size_of::<TSIndexSignature>() == 36);
assert!(align_of::<TSIndexSignature>() == 4);
assert!(offset_of!(TSIndexSignature, span) == 0);
assert!(offset_of!(TSIndexSignature, node_id) == 8);
assert!(offset_of!(TSIndexSignature, readonly) == 12);
assert!(offset_of!(TSIndexSignature, r#static) == 13);
assert!(offset_of!(TSIndexSignature, parameters) == 16);
assert!(offset_of!(TSIndexSignature, type_annotation) == 32);
assert!(size_of::<TSCallSignatureDeclaration>() == 32);
assert!(align_of::<TSCallSignatureDeclaration>() == 4);
assert!(offset_of!(TSCallSignatureDeclaration, span) == 0);
assert!(offset_of!(TSCallSignatureDeclaration, node_id) == 8);
assert!(offset_of!(TSCallSignatureDeclaration, scope_id) == 12);
assert!(offset_of!(TSCallSignatureDeclaration, type_parameters) == 16);
assert!(offset_of!(TSCallSignatureDeclaration, this_param) == 20);
assert!(offset_of!(TSCallSignatureDeclaration, params) == 24);
assert!(offset_of!(TSCallSignatureDeclaration, return_type) == 28);
assert!(size_of::<TSMethodSignatureKind>() == 1);
assert!(align_of::<TSMethodSignatureKind>() == 1);
assert!(size_of::<TSMethodSignature>() == 44);
assert!(align_of::<TSMethodSignature>() == 4);
assert!(offset_of!(TSMethodSignature, span) == 0);
assert!(offset_of!(TSMethodSignature, node_id) == 8);
assert!(offset_of!(TSMethodSignature, scope_id) == 12);
assert!(offset_of!(TSMethodSignature, key) == 16);
assert!(offset_of!(TSMethodSignature, type_parameters) == 24);
assert!(offset_of!(TSMethodSignature, this_param) == 28);
assert!(offset_of!(TSMethodSignature, params) == 32);
assert!(offset_of!(TSMethodSignature, return_type) == 36);
assert!(offset_of!(TSMethodSignature, computed) == 40);
assert!(offset_of!(TSMethodSignature, optional) == 41);
assert!(offset_of!(TSMethodSignature, kind) == 42);
assert!(size_of::<TSConstructSignatureDeclaration>() == 28);
assert!(align_of::<TSConstructSignatureDeclaration>() == 4);
assert!(offset_of!(TSConstructSignatureDeclaration, span) == 0);
assert!(offset_of!(TSConstructSignatureDeclaration, node_id) == 8);
assert!(offset_of!(TSConstructSignatureDeclaration, scope_id) == 12);
assert!(offset_of!(TSConstructSignatureDeclaration, type_parameters) == 16);
assert!(offset_of!(TSConstructSignatureDeclaration, params) == 20);
assert!(offset_of!(TSConstructSignatureDeclaration, return_type) == 24);
assert!(size_of::<TSIndexSignatureName>() == 24);
assert!(align_of::<TSIndexSignatureName>() == 4);
assert!(offset_of!(TSIndexSignatureName, span) == 0);
assert!(offset_of!(TSIndexSignatureName, node_id) == 8);
assert!(offset_of!(TSIndexSignatureName, name) == 12);
assert!(offset_of!(TSIndexSignatureName, type_annotation) == 20);
assert!(size_of::<TSInterfaceHeritage>() == 24);
assert!(align_of::<TSInterfaceHeritage>() == 4);
assert!(offset_of!(TSInterfaceHeritage, span) == 0);
assert!(offset_of!(TSInterfaceHeritage, node_id) == 8);
assert!(offset_of!(TSInterfaceHeritage, expression) == 12);
assert!(offset_of!(TSInterfaceHeritage, type_arguments) == 20);
assert!(size_of::<TSTypePredicate>() == 36);
assert!(align_of::<TSTypePredicate>() == 4);
assert!(offset_of!(TSTypePredicate, span) == 0);
assert!(offset_of!(TSTypePredicate, node_id) == 8);
assert!(offset_of!(TSTypePredicate, asserts) == 12);
assert!(offset_of!(TSTypePredicate, parameter_name) == 16);
assert!(offset_of!(TSTypePredicate, type_annotation) == 32);
assert!(size_of::<TSTypePredicateName>() == 16);
assert!(align_of::<TSTypePredicateName>() == 4);
assert!(size_of::<TSModuleDeclaration>() == 64);
assert!(align_of::<TSModuleDeclaration>() == 4);
assert!(offset_of!(TSModuleDeclaration, span) == 0);
assert!(offset_of!(TSModuleDeclaration, node_id) == 8);
assert!(offset_of!(TSModuleDeclaration, scope_id) == 12);
assert!(offset_of!(TSModuleDeclaration, id) == 16);
assert!(offset_of!(TSModuleDeclaration, body) == 52);
assert!(offset_of!(TSModuleDeclaration, kind) == 60);
assert!(offset_of!(TSModuleDeclaration, declare) == 61);
assert!(size_of::<TSModuleDeclarationKind>() == 1);
assert!(align_of::<TSModuleDeclarationKind>() == 1);
assert!(size_of::<TSModuleDeclarationName>() == 36);
assert!(align_of::<TSModuleDeclarationName>() == 4);
assert!(size_of::<TSModuleDeclarationBody>() == 8);
assert!(align_of::<TSModuleDeclarationBody>() == 4);
assert!(size_of::<TSGlobalDeclaration>() == 72);
assert!(align_of::<TSGlobalDeclaration>() == 4);
assert!(offset_of!(TSGlobalDeclaration, span) == 0);
assert!(offset_of!(TSGlobalDeclaration, node_id) == 8);
assert!(offset_of!(TSGlobalDeclaration, scope_id) == 12);
assert!(offset_of!(TSGlobalDeclaration, global_span) == 16);
assert!(offset_of!(TSGlobalDeclaration, body) == 24);
assert!(offset_of!(TSGlobalDeclaration, declare) == 68);
assert!(size_of::<TSModuleBlock>() == 44);
assert!(align_of::<TSModuleBlock>() == 4);
assert!(offset_of!(TSModuleBlock, span) == 0);
assert!(offset_of!(TSModuleBlock, node_id) == 8);
assert!(offset_of!(TSModuleBlock, directives) == 12);
assert!(offset_of!(TSModuleBlock, body) == 28);
assert!(size_of::<TSTypeLiteral>() == 28);
assert!(align_of::<TSTypeLiteral>() == 4);
assert!(offset_of!(TSTypeLiteral, span) == 0);
assert!(offset_of!(TSTypeLiteral, node_id) == 8);
assert!(offset_of!(TSTypeLiteral, members) == 12);
assert!(size_of::<TSInferType>() == 16);
assert!(align_of::<TSInferType>() == 4);
assert!(offset_of!(TSInferType, span) == 0);
assert!(offset_of!(TSInferType, node_id) == 8);
assert!(offset_of!(TSInferType, type_parameter) == 12);
assert!(size_of::<TSTypeQuery>() == 24);
assert!(align_of::<TSTypeQuery>() == 4);
assert!(offset_of!(TSTypeQuery, span) == 0);
assert!(offset_of!(TSTypeQuery, node_id) == 8);
assert!(offset_of!(TSTypeQuery, expr_name) == 12);
assert!(offset_of!(TSTypeQuery, type_arguments) == 20);
assert!(size_of::<TSTypeQueryExprName>() == 8);
assert!(align_of::<TSTypeQueryExprName>() == 4);
assert!(size_of::<TSImportType>() == 60);
assert!(align_of::<TSImportType>() == 4);
assert!(offset_of!(TSImportType, span) == 0);
assert!(offset_of!(TSImportType, node_id) == 8);
assert!(offset_of!(TSImportType, source) == 12);
assert!(offset_of!(TSImportType, options) == 44);
assert!(offset_of!(TSImportType, qualifier) == 48);
assert!(offset_of!(TSImportType, type_arguments) == 56);
assert!(size_of::<TSImportTypeQualifier>() == 8);
assert!(align_of::<TSImportTypeQualifier>() == 4);
assert!(size_of::<TSImportTypeQualifiedName>() == 44);
assert!(align_of::<TSImportTypeQualifiedName>() == 4);
assert!(offset_of!(TSImportTypeQualifiedName, span) == 0);
assert!(offset_of!(TSImportTypeQualifiedName, node_id) == 8);
assert!(offset_of!(TSImportTypeQualifiedName, left) == 12);
assert!(offset_of!(TSImportTypeQualifiedName, right) == 20);
assert!(size_of::<TSFunctionType>() == 32);
assert!(align_of::<TSFunctionType>() == 4);
assert!(offset_of!(TSFunctionType, span) == 0);
assert!(offset_of!(TSFunctionType, node_id) == 8);
assert!(offset_of!(TSFunctionType, scope_id) == 12);
assert!(offset_of!(TSFunctionType, type_parameters) == 16);
assert!(offset_of!(TSFunctionType, this_param) == 20);
assert!(offset_of!(TSFunctionType, params) == 24);
assert!(offset_of!(TSFunctionType, return_type) == 28);
assert!(size_of::<TSConstructorType>() == 32);
assert!(align_of::<TSConstructorType>() == 4);
assert!(offset_of!(TSConstructorType, span) == 0);
assert!(offset_of!(TSConstructorType, node_id) == 8);
assert!(offset_of!(TSConstructorType, scope_id) == 12);
assert!(offset_of!(TSConstructorType, type_parameters) == 16);
assert!(offset_of!(TSConstructorType, params) == 20);
assert!(offset_of!(TSConstructorType, return_type) == 24);
assert!(offset_of!(TSConstructorType, r#abstract) == 28);
assert!(size_of::<TSMappedType>() == 72);
assert!(align_of::<TSMappedType>() == 4);
assert!(offset_of!(TSMappedType, span) == 0);
assert!(offset_of!(TSMappedType, node_id) == 8);
assert!(offset_of!(TSMappedType, scope_id) == 12);
assert!(offset_of!(TSMappedType, key) == 16);
assert!(offset_of!(TSMappedType, constraint) == 44);
assert!(offset_of!(TSMappedType, name_type) == 52);
assert!(offset_of!(TSMappedType, type_annotation) == 60);
assert!(offset_of!(TSMappedType, optional) == 68);
assert!(offset_of!(TSMappedType, readonly) == 69);
assert!(size_of::<TSMappedTypeModifierOperator>() == 1);
assert!(align_of::<TSMappedTypeModifierOperator>() == 1);
assert!(size_of::<TSTemplateLiteralType>() == 44);
assert!(align_of::<TSTemplateLiteralType>() == 4);
assert!(offset_of!(TSTemplateLiteralType, span) == 0);
assert!(offset_of!(TSTemplateLiteralType, node_id) == 8);
assert!(offset_of!(TSTemplateLiteralType, quasis) == 12);
assert!(offset_of!(TSTemplateLiteralType, types) == 28);
assert!(size_of::<TSAsExpression>() == 28);
assert!(align_of::<TSAsExpression>() == 4);
assert!(offset_of!(TSAsExpression, span) == 0);
assert!(offset_of!(TSAsExpression, node_id) == 8);
assert!(offset_of!(TSAsExpression, expression) == 12);
assert!(offset_of!(TSAsExpression, type_annotation) == 20);
assert!(size_of::<TSSatisfiesExpression>() == 28);
assert!(align_of::<TSSatisfiesExpression>() == 4);
assert!(offset_of!(TSSatisfiesExpression, span) == 0);
assert!(offset_of!(TSSatisfiesExpression, node_id) == 8);
assert!(offset_of!(TSSatisfiesExpression, expression) == 12);
assert!(offset_of!(TSSatisfiesExpression, type_annotation) == 20);
assert!(size_of::<TSTypeAssertion>() == 28);
assert!(align_of::<TSTypeAssertion>() == 4);
assert!(offset_of!(TSTypeAssertion, span) == 0);
assert!(offset_of!(TSTypeAssertion, node_id) == 8);
assert!(offset_of!(TSTypeAssertion, type_annotation) == 12);
assert!(offset_of!(TSTypeAssertion, expression) == 20);
assert!(size_of::<TSImportEqualsDeclaration>() == 52);
assert!(align_of::<TSImportEqualsDeclaration>() == 4);
assert!(offset_of!(TSImportEqualsDeclaration, span) == 0);
assert!(offset_of!(TSImportEqualsDeclaration, node_id) == 8);
assert!(offset_of!(TSImportEqualsDeclaration, import_kind) == 12);
assert!(offset_of!(TSImportEqualsDeclaration, id) == 16);
assert!(offset_of!(TSImportEqualsDeclaration, module_reference) == 44);
assert!(size_of::<TSModuleReference>() == 8);
assert!(align_of::<TSModuleReference>() == 4);
assert!(size_of::<TSExternalModuleReference>() == 44);
assert!(align_of::<TSExternalModuleReference>() == 4);
assert!(offset_of!(TSExternalModuleReference, span) == 0);
assert!(offset_of!(TSExternalModuleReference, node_id) == 8);
assert!(offset_of!(TSExternalModuleReference, expression) == 12);
assert!(size_of::<TSNonNullExpression>() == 20);
assert!(align_of::<TSNonNullExpression>() == 4);
assert!(offset_of!(TSNonNullExpression, span) == 0);
assert!(offset_of!(TSNonNullExpression, node_id) == 8);
assert!(offset_of!(TSNonNullExpression, expression) == 12);
assert!(size_of::<Decorator>() == 20);
assert!(align_of::<Decorator>() == 4);
assert!(offset_of!(Decorator, span) == 0);
assert!(offset_of!(Decorator, node_id) == 8);
assert!(offset_of!(Decorator, expression) == 12);
assert!(size_of::<TSExportAssignment>() == 20);
assert!(align_of::<TSExportAssignment>() == 4);
assert!(offset_of!(TSExportAssignment, span) == 0);
assert!(offset_of!(TSExportAssignment, node_id) == 8);
assert!(offset_of!(TSExportAssignment, expression) == 12);
assert!(size_of::<TSNamespaceExportDeclaration>() == 36);
assert!(align_of::<TSNamespaceExportDeclaration>() == 4);
assert!(offset_of!(TSNamespaceExportDeclaration, span) == 0);
assert!(offset_of!(TSNamespaceExportDeclaration, node_id) == 8);
assert!(offset_of!(TSNamespaceExportDeclaration, id) == 12);
assert!(size_of::<TSInstantiationExpression>() == 24);
assert!(align_of::<TSInstantiationExpression>() == 4);
assert!(offset_of!(TSInstantiationExpression, span) == 0);
assert!(offset_of!(TSInstantiationExpression, node_id) == 8);
assert!(offset_of!(TSInstantiationExpression, expression) == 12);
assert!(offset_of!(TSInstantiationExpression, type_arguments) == 20);
assert!(size_of::<ImportOrExportKind>() == 1);
assert!(align_of::<ImportOrExportKind>() == 1);
assert!(size_of::<JSDocNullableType>() == 24);
assert!(align_of::<JSDocNullableType>() == 4);
assert!(offset_of!(JSDocNullableType, span) == 0);
assert!(offset_of!(JSDocNullableType, node_id) == 8);
assert!(offset_of!(JSDocNullableType, postfix) == 12);
assert!(offset_of!(JSDocNullableType, type_annotation) == 16);
assert!(size_of::<JSDocNonNullableType>() == 24);
assert!(align_of::<JSDocNonNullableType>() == 4);
assert!(offset_of!(JSDocNonNullableType, span) == 0);
assert!(offset_of!(JSDocNonNullableType, node_id) == 8);
assert!(offset_of!(JSDocNonNullableType, postfix) == 12);
assert!(offset_of!(JSDocNonNullableType, type_annotation) == 16);
assert!(size_of::<JSDocUnknownType>() == 12);
assert!(align_of::<JSDocUnknownType>() == 4);
assert!(offset_of!(JSDocUnknownType, span) == 0);
assert!(offset_of!(JSDocUnknownType, node_id) == 8);
assert!(size_of::<CommentKind>() == 1);
assert!(align_of::<CommentKind>() == 1);
assert!(size_of::<CommentPosition>() == 1);
assert!(align_of::<CommentPosition>() == 1);
assert!(size_of::<CommentContent>() == 1);
assert!(align_of::<CommentContent>() == 1);
assert!(size_of::<CommentNewlines>() == 1);
assert!(align_of::<CommentNewlines>() == 1);
assert!(size_of::<Comment>() == 16);
assert!(align_of::<Comment>() == 4);
assert!(offset_of!(Comment, span) == 0);
assert!(offset_of!(Comment, attached_to) == 8);
assert!(offset_of!(Comment, kind) == 12);
assert!(offset_of!(Comment, position) == 13);
assert!(offset_of!(Comment, newlines) == 14);
assert!(offset_of!(Comment, content) == 15);
};
#[cfg(not(any(target_pointer_width = "64", target_pointer_width = "32")))]
const _: () = panic!("Platforms with pointer width other than 64 or 32 bit are not supported");