Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow quotes to be last characters of multi-line string #239

Merged
merged 1 commit into from
May 26, 2023

Conversation

susliko
Copy link
Collaborator

@susliko susliko commented May 25, 2023

Resolves #225

Problem

Strings like """"""" are valid in scala, but not in the grammar

Solution

In scanner.c emit multi-line string only when at least 3 closing quotes found and the next lookahead is not a quote

Also, corpus/literals.txt was formatted with tree-sitter test -u

src/scanner.c Outdated Show resolved Hide resolved
Copy link
Collaborator

@eed3si9n eed3si9n left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, with minor comment

Problem
-------
Strings like `"""""""` are valid in scala, but not in the grammar

Solution
-------
In `scanner.c` emit multi-line string only when at least 3 closing
quotes found and the next lookahead is not a quote
@eed3si9n eed3si9n merged commit 23d2131 into tree-sitter:master May 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Quote as last character of multi-line string
2 participants