Type Alias ComplexSyntaxErrorCause

ComplexSyntaxErrorCause: {
    hash: Hash;
    type: "complex";
}

Signals a syntax error in file.root that is context-dependent -- eg: duplicate variable declarations or with statement in strict mode.

Type declaration

  • hash: Hash

    The hash of the node that caused the syntax error.

  • type: "complex"