add detection for Gosu

This commit is contained in:
Gus Prevas
2011-08-04 20:50:29 -04:00
parent 3459f5b438
commit aaa14cfca6
7 changed files with 143 additions and 0 deletions

9
test/fixtures/Hello.gsx vendored Normal file
View File

@@ -0,0 +1,9 @@
package example
enhancement Hello : String {
function toPerson() : Person {
var vals = this.split(",")
return new Person( vals[0], vals[1] as int, Relationship.valueOf( vals[2] ) ) )
}
}