TO DO: Complete

interface Linter {
    isValid(program?): boolean;
}

Implemented by

Methods

Methods

  • Validate a given program (or the current one)

    Parameters

    • Optional program: AST

      an abstract syntax tree to analyze and validate.

    Returns boolean