Skip to content

Bad handling of semi-colons #76

@Nsidorenco

Description

@Nsidorenco

For examples like the following, removing the semi-colon will make the example parse.

let y = 'a'.ToString();

do ()

The presence of ';' prevents the scanner from inserting a dedent token required to close the declaration expression.

Expected result:

let y = 'a'.ToString();

do ()

should parse the same as:

let y = 'a'.ToString()

do ()

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions