-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Generics disappear on try.dartlang.org #16
Comments
This comment was originally written by [email protected] Set owner to [email protected]. |
This comment was originally written by [email protected] Removed Component-Docs label. |
This comment was originally written by [email protected] I think the example got mangled. Should this example demonstrate the issue? http://try.dartlang.org/s/4ocW |
This comment was originally written by [email protected] Your example should demonstrate the issue, as well as this example: The latter still demonstrated the issue yesterday, but both examples work fine now. It seems to be fixed. Thanks guys, you're awesome! (I call "verified".) |
This comment was originally written by [email protected] We did fix an escaping bug yesterday evening. Glad to hear it fixes the issue. Added Verified label. |
This issue was originally filed by [email protected]
Go to try.dartlang.org, then insert and execute this code:
class PointlessValueWrapper {
PointlessValueWrapper(Type pointlessArgument);
}
main() {
new PointlessValueWrapper(5);
new PointlessValueWrapper("Hello!");
}
As expected, line 6 raises a warning.
Now, open the link on the top right in a new tab. You'll see the same code, except the type parameters are missing. Because of this, line 2 now produces an error.
I expect a tokeniser somewhere is misbehaving.
Using Firefox/Nightly (which is at version 10, at the moment).
The text was updated successfully, but these errors were encountered: