File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
main/kotlin/org/lice/core
test/kotlin/org/lice/lang Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -119,13 +119,14 @@ class SymbolList
119
119
fun extractLiceVariable (name : String ): Any? = (getVariable(name) as Node ).eval()
120
120
121
121
companion object {
122
- val pathSeperator : String = System .getProperty(" path.separator" )
122
+ val pathSeparator : String = System .getProperty(" path.separator" )
123
123
val classPath: String = System .getProperty(" java.class.path" )
124
124
125
125
val preludeVariables = listOf (" null" , " true" , " false" )
126
126
val preludeSymbols by lazy {
127
127
listOf (
128
128
FunctionHolders ::class .java.declaredMethods.map { it.name },
129
+ FunctionDefinedHolder ::class .java.declaredMethods.map { it.name },
129
130
FunctionDefinedMangledHolder ::class .java.declaredMethods.map { it.name.mangleA() },
130
131
FunctionMangledHolder ::class .java.declaredMethods.map { it.name.mangleB() },
131
132
FunctionWithMetaHolders ::class .java.declaredMethods.map { it.name },
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class IdeTest {
9
9
@Test
10
10
fun testAllSymbols () {
11
11
println (SymbolList .classPath)
12
- println (SymbolList .pathSeperator )
12
+ println (SymbolList .pathSeparator )
13
13
println (SymbolList .preludeSymbols)
14
14
println (SymbolList .preludeVariables)
15
15
ValueNode (1 , MetaData .EmptyMetaData )
You can’t perform that action at this time.
0 commit comments