More skeleton, including a trivial second_pass_function, fix a bug with ADTs that have members with the same name (may still be a problem if the ADT itself has the same name)

This commit is contained in:
Nathan Braswell
2016-01-05 21:40:00 -05:00
parent 79065c032f
commit f29fdcd463
6 changed files with 121 additions and 18 deletions

View File

@@ -1,5 +1,12 @@
import to_import: a,b
obj Something (ObjectTrait) {
var member: int
fun method():int {
return 5
}
}
fun main(): int {
return 0
}