Add a real Pygments lexer for Wren (finally!).

This commit is contained in:
Bob Nystrom
2015-09-22 07:59:54 -07:00
parent 36f7d74183
commit 505b48fdac
34 changed files with 294 additions and 198 deletions
+3 -3
View File
@@ -11,7 +11,7 @@ The name of the class.
The superclass of this class.
:::dart
:::wren
class Crustacean {}
class Crab is Crustacean {}
@@ -19,10 +19,10 @@ The superclass of this class.
A class with no explicit superclass implicitly inherits Object:
:::dart
:::wren
System.print(Crustacean.supertype) // "Object".
Object forms the root of the class hierarchy and has no supertype:
:::dart
:::wren
System.print(Object.supertype) // "null".