mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-19 00:31:06 +00:00
8 lines
354 B
TypeScript
8 lines
354 B
TypeScript
import type { ParseNode } from '../parser/ParseNode.mts';
|
|
|
|
/** https://tc39.es/ecma262/#sec-static-semantics-bodytext */
|
|
// RegularExpressionLiteral :: `/` RegularExpressionBody `/` RegularExpressionFlags
|
|
export function BodyText(RegularExpressionLiteral: ParseNode.RegularExpressionLiteral) {
|
|
return RegularExpressionLiteral.RegularExpressionBody;
|
|
}
|