mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-19 00:31:06 +00:00
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import type { ParseNode } from '../parser/ParseNode.mts';
|
|
|
|
export function IsInTailPosition(_node: ParseNode): boolean {
|
|
return false;
|
|
}
|