Created
September 9, 2013 14:46
-
-
Save pedrofurla/6496611 to your computer and use it in GitHub Desktop.
"Subverting" Scala parser with compiler plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sealed trait Foo | Bleh | Dummy(val x:Int) | |
| Into: | |
| sealed trait Foo | |
| case class Bleh extends Foo | |
| case class Dummy(val x:Int) extends Foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment