ecmarkup
Version:
Custom element definitions and core utilities for markup that specifies ECMAScript and related technologies.
6 lines (5 loc) • 433 B
TypeScript
import type { OrderedListNode, OrderedListItemNode } from 'ecmarkdown';
import type { Reporter } from '../algorithm-error-reporter-type';
import type { Seq } from '../../expr-parser';
import type { default as Spec } from '../../Spec';
export declare function checkVariableUsage(spec: Spec, algorithmSource: string, containingAlgorithm: Element, steps: OrderedListNode, parsed: Map<OrderedListItemNode, Seq>, report: Reporter): void;