2016-05-22 15:32:17 -07:00
|
|
|
import "meta" for Meta
|
|
|
|
|
|
2018-07-15 20:09:41 -07:00
|
|
|
var variables = Meta.getModuleVariables("./test/meta/get_module_variables")
|
2016-05-22 15:32:17 -07:00
|
|
|
|
|
|
|
|
// Includes implicitly imported core stuff.
|
|
|
|
|
System.print(variables.contains("Object")) // expect: true
|
|
|
|
|
System.print(variables.contains("Bool")) // expect: true
|
|
|
|
|
|
|
|
|
|
// Includes top level variables.
|
|
|
|
|
System.print(variables.contains("variables")) // expect: true
|
|
|
|
|
|
|
|
|
|
// Even ones declared later.
|
|
|
|
|
System.print(variables.contains("later")) // expect: true
|
|
|
|
|
|
|
|
|
|
var later = "values"
|
|
|
|
|
|
|
|
|
|
System.print(variables.contains("unknown")) // expect: false
|