UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

10 lines (9 loc) 409 B
import type { AssignmentExpression } from 'estree'; import type { Rule } from '../../types'; import { NoUnspecifiedOperatorError } from './noUnspecifiedOperator'; export declare class NoUpdateAssignment extends NoUnspecifiedOperatorError<AssignmentExpression> { explain(): string; elaborate(): string; } declare const noUpdateAssignment: Rule<AssignmentExpression>; export default noUpdateAssignment;