-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zhirkevich Alexander Y
authored and
Zhirkevich Alexander Y
committed
Sep 5, 2024
1 parent
98990b2
commit ef7f406
Showing
6 changed files
with
96 additions
and
64 deletions.
There are no files selected for viewing
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
...commonMain/kotlin/io/github/alexzhirkevich/skriptie/ecmascript/ESInterpretationContext.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.github.alexzhirkevich.skriptie.ecmascript | ||
|
||
import io.github.alexzhirkevich.skriptie.Expression | ||
import io.github.alexzhirkevich.skriptie.InterpretationContext | ||
|
||
public open class EcmascriptInterpretationContext( | ||
public val namedArgumentsEnabled : Boolean = false | ||
) : InterpretationContext { | ||
override fun interpret(callable: String?, args: List<Expression>?): Expression? { | ||
return null | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
...in/kotlin/io/github/alexzhirkevich/skriptie/ecmascript/EcmascriptInterpretationContext.kt
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
...tie/src/commonMain/kotlin/io/github/alexzhirkevich/skriptie/javascript/JSGlobalContext.kt
This file was deleted.
Oops, something went wrong.