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

Templates compiler bug #132

Open
jroper opened this issue May 30, 2013 · 3 comments
Open

Templates compiler bug #132

jroper opened this issue May 30, 2013 · 3 comments

Comments

@jroper
Copy link

jroper commented May 30, 2013

Well, I haven't actually seen this bug in Scala IDE, but I used

#40

as a guide for upgrading to Scala 2.10 for SBT 0.13 in Play itself, and found that there was a bug in the way it handled byName parameters. That pull request changed calls to ValDef.mods.isByNameParam to ValDef.symbol.isByNameParam, but that doesn't actually correctly detect by name params. What it should do is use ValDef.mods.hasFlag(Flags.BYNAMEPARAM). Don't ask me exactly what's going on, it was mostly trial and error and looking at values in a debugger that allowed me to get it working.

@dragos
Copy link
Member

dragos commented May 30, 2013

It's not very clear to me how the template compiler uses the presentation compiler, but I agree that the symbol may not have the correct flags always. What is the manifestation of this bug for a user?

@jroper
Copy link
Author

jroper commented May 30, 2013

I think it uses it to parse the templates parameter declaration, so that it can generate a template of the right type. That is, if a template takes an Int and a String parameter, the type of the template must be Template2[Int, String].

The manifestation of the bug was, given a form with a by name parameter, eg:

@(foo: => String)

@foo

The template compiler would produce code that had references to that type that looked like this:

_root_.scala.<byname>[String]

which produced a compile error when scalac compiled it.

@dragos
Copy link
Member

dragos commented May 30, 2013

@jroper, thank you for the explanation.

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

No branches or pull requests

2 participants