Skip to content

Commit 25b760b

Browse files
author
AdrianTodt
committed
Added support for MetaObjects
1 parent c7ce2ef commit 25b760b

File tree

10 files changed

+909
-435
lines changed

10 files changed

+909
-435
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ plugins {
66
}
77

88
group = "net.adriantodt"
9-
version = "0.2.0"
9+
version = "0.3.0"
1010

1111
repositories {
1212
mavenCentral()
1313
maven { url = uri("https://maven.cafeteria.dev/releases") }
14+
maven { url = uri("https://maven.adriantodt.net/releases") }
1415
}
1516

1617
kotlin {

src/commonMain/kotlin/net/adriantodt/leanvm/context/FunctionSetupContext.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public class FunctionSetupContext(
6464
control,
6565
function.source,
6666
function.name ?: "<anonymous function>",
67+
thisValue,
6768
runtime,
6869
scope,
6970
paramBody,
70-
thisValue
7171
)
7272
)
7373
return
@@ -84,10 +84,10 @@ public class FunctionSetupContext(
8484
control,
8585
function.source,
8686
function.name ?: "<anonymous function>",
87+
thisValue,
8788
runtime,
8889
Scope(scope),
8990
body,
90-
thisValue
9191
)
9292
)
9393
}

0 commit comments

Comments
 (0)