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

Semantic tokens calculation goes in an infinite loop if escape character on an instruction has non-newline whitespace after it #95

Closed
rcjsuen opened this issue Oct 19, 2021 · 0 comments
Labels
bug Something isn't working

Comments

@rcjsuen
Copy link
Owner

rcjsuen commented Oct 19, 2021

const lib = require("dockerfile-language-service");
const service = lib.DockerfileLanguageServiceFactory.createLanguageService();
service.computeSemanticTokens("R\\ \n\n");
Uncaught RangeError: Maximum call stack size exceeded
    at u.getRawArguments (bundle.js:1)
    at u.getVariables (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)
    at e.createToken (bundle.js:1)

It seems like the single character is the issue as the below JavaScript code does not enter an infinite loop.

const lib = require("dockerfile-language-service");
const service = lib.DockerfileLanguageServiceFactory.createLanguageService();
service.computeSemanticTokens("RU\\ \n\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant