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

Wrongly parsed String expression #10532

Closed
SimonDanisch opened this issue Mar 16, 2015 · 2 comments
Closed

Wrongly parsed String expression #10532

SimonDanisch opened this issue Mar 16, 2015 · 2 comments
Labels
parser Language parsing and surface syntax

Comments

@SimonDanisch
Copy link
Contributor

I wasn't able to build a minimal example (like always with parsing errors?! )
But Julia insisted that there is an ERROR: syntax: unexpected end
The place was consistently at that one end of some method, even though that I moved the code around and un-commented stuff.
The real error was this though:

#same file, at the beginning (probably never moved the "end method" before this)
let shader_cache = Dict{(GLenum, Vector{Uint8}), GLuint}() 
    function test()
        get(shader_cache, "s") do 
            error("shader $shadername didn't compile. \n$(getinfolog(shaderid)") # <- one bracket missing
        end
    end
end

Tested: Windows: 0 day master, 0.3.5, Ubuntu: 0.4 some days old.

Best,
Simon

@JeffBezanson
Copy link
Member

$ parses until it has a full expression, so this looks like an interpolated expression with a " in it. There is no way to know that the " is intended to close the string, unless we disallow quotes inside interpolated expressions. String interpolation just sucks; nothing new there.

@SimonDanisch
Copy link
Contributor Author

Ah yeah, this makes sense, as the "end method" was the first to use strings.
Still can't build a minimal example though!
I always get ERROR: LoadError: syntax: incomplete: invalid string syntax with the correct line number (at least to the correct function), which is way better!

@ihnorton ihnorton added the parser Language parsing and surface syntax label Mar 28, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
parser Language parsing and surface syntax
Projects
None yet
Development

No branches or pull requests

3 participants