UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

12 lines (11 loc) 390 B
import * as es from 'estree'; import { ErrorSeverity, ErrorType, SourceError } from '../types'; export declare class NoAssignmentToForVariable implements SourceError { node: es.AssignmentExpression; type: ErrorType; severity: ErrorSeverity; constructor(node: es.AssignmentExpression); get location(): es.SourceLocation; explain(): string; elaborate(): string; }