Skip to content

Commit

Permalink
Added support for MetaObjects
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianTodt committed Sep 13, 2022
1 parent c7ce2ef commit 25b760b
Show file tree
Hide file tree
Showing 10 changed files with 909 additions and 435 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ plugins {
}

group = "net.adriantodt"
version = "0.2.0"
version = "0.3.0"

repositories {
mavenCentral()
maven { url = uri("https://maven.cafeteria.dev/releases") }
maven { url = uri("https://maven.adriantodt.net/releases") }
}

kotlin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ public class FunctionSetupContext(
control,
function.source,
function.name ?: "<anonymous function>",
thisValue,
runtime,
scope,
paramBody,
thisValue
)
)
return
Expand All @@ -84,10 +84,10 @@ public class FunctionSetupContext(
control,
function.source,
function.name ?: "<anonymous function>",
thisValue,
runtime,
Scope(scope),
body,
thisValue
)
)
}
Expand Down
Loading

0 comments on commit 25b760b

Please sign in to comment.