mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
8 lines
274 B
TypeScript
8 lines
274 B
TypeScript
import type { ParseNode } from '../parser/ParseNode.mts';
|
|
import { Evaluate_StatementList } from './all.mts';
|
|
|
|
// ScriptBody : StatementList
|
|
export function Evaluate_ScriptBody(ScriptBody: ParseNode.ScriptBody) {
|
|
return Evaluate_StatementList(ScriptBody.StatementList);
|
|
}
|