From d9287875ae415c326c99f0b879b8569bba0a90cd Mon Sep 17 00:00:00 2001 From: maxonfjvipon Date: Wed, 3 Jul 2024 16:49:07 +0300 Subject: [PATCH] feat(#3247): added +rt node meta --- .rultor.yml | 3 ++- eo-runtime/src/main/eo/org/eolang/as-phi.eo | 1 + eo-runtime/src/main/eo/org/eolang/bytes.eo | 1 + eo-runtime/src/main/eo/org/eolang/cage.eo | 1 + eo-runtime/src/main/eo/org/eolang/cti.eo | 1 + eo-runtime/src/main/eo/org/eolang/dataized.eo | 1 + eo-runtime/src/main/eo/org/eolang/error.eo | 1 + eo-runtime/src/main/eo/org/eolang/false.eo | 1 + eo-runtime/src/main/eo/org/eolang/float.eo | 1 + eo-runtime/src/main/eo/org/eolang/go.eo | 1 + eo-runtime/src/main/eo/org/eolang/int.eo | 1 + eo-runtime/src/main/eo/org/eolang/io/stdin.eo | 1 + eo-runtime/src/main/eo/org/eolang/io/stdout.eo | 1 + eo-runtime/src/main/eo/org/eolang/malloc.eo | 1 + eo-runtime/src/main/eo/org/eolang/nan.eo | 1 + eo-runtime/src/main/eo/org/eolang/negative-infinity.eo | 1 + eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 1 + eo-runtime/src/main/eo/org/eolang/rust.eo | 1 + eo-runtime/src/main/eo/org/eolang/seq.eo | 1 + eo-runtime/src/main/eo/org/eolang/string.eo | 1 + eo-runtime/src/main/eo/org/eolang/switch.eo | 1 + eo-runtime/src/main/eo/org/eolang/true.eo | 1 + eo-runtime/src/main/eo/org/eolang/try.eo | 1 + eo-runtime/src/main/eo/org/eolang/tuple.eo | 1 + eo-runtime/src/main/eo/org/eolang/while.eo | 1 + 25 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.rultor.yml b/.rultor.yml index d03414da64..048c3cd7b5 100644 --- a/.rultor.yml +++ b/.rultor.yml @@ -66,7 +66,8 @@ release: git commit -am "XMIR XSD ${tag}" rm -rf objectionary cp -R /tmp/objectionary . - find objectionary -name '*.eo' | xargs sed -i "s/0\.0\.0/${tag}/g" + find objectionary -name '*.eo' | xargs sed -i "s/jvm org.eolang:eo-runtime:0\.0\.0/jvm org.eolang:eo-runtime:${tag}/g" + find objectionary -name '*.eo' | xargs sed -i "s/version 0\.0\.0/version ${tag}/g" git add objectionary find objectionary -name '*.eo' > objectionary.lst git add objectionary.lst diff --git a/eo-runtime/src/main/eo/org/eolang/as-phi.eo b/eo-runtime/src/main/eo/org/eolang/as-phi.eo index 8e1a9ef3b2..119c53e679 100644 --- a/eo-runtime/src/main/eo/org/eolang/as-phi.eo +++ b/eo-runtime/src/main/eo/org/eolang/as-phi.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Turns an object into a phi-term printable to console. diff --git a/eo-runtime/src/main/eo/org/eolang/bytes.eo b/eo-runtime/src/main/eo/org/eolang/bytes.eo index 49733f78d6..7cbefb0045 100644 --- a/eo-runtime/src/main/eo/org/eolang/bytes.eo +++ b/eo-runtime/src/main/eo/org/eolang/bytes.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object encapsulates a chain of bytes, adding a few diff --git a/eo-runtime/src/main/eo/org/eolang/cage.eo b/eo-runtime/src/main/eo/org/eolang/cage.eo index 296c14e9cd..017276773e 100644 --- a/eo-runtime/src/main/eo/org/eolang/cage.eo +++ b/eo-runtime/src/main/eo/org/eolang/cage.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # This object is doing exactly the same as `memory`, but allows diff --git a/eo-runtime/src/main/eo/org/eolang/cti.eo b/eo-runtime/src/main/eo/org/eolang/cti.eo index 017db8d1a6..3e2a2e7296 100644 --- a/eo-runtime/src/main/eo/org/eolang/cti.eo +++ b/eo-runtime/src/main/eo/org/eolang/cti.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Compile Time Instruction (CTI). diff --git a/eo-runtime/src/main/eo/org/eolang/dataized.eo b/eo-runtime/src/main/eo/org/eolang/dataized.eo index 069ee9d5de..34220f36a2 100644 --- a/eo-runtime/src/main/eo/org/eolang/dataized.eo +++ b/eo-runtime/src/main/eo/org/eolang/dataized.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object dataizes `target`, makes new instance of `bytes` from given data and behaves as result diff --git a/eo-runtime/src/main/eo/org/eolang/error.eo b/eo-runtime/src/main/eo/org/eolang/error.eo index 5c99918d8c..c9ef4af391 100644 --- a/eo-runtime/src/main/eo/org/eolang/error.eo +++ b/eo-runtime/src/main/eo/org/eolang/error.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # This object must be used in order to terminate the program diff --git a/eo-runtime/src/main/eo/org/eolang/false.eo b/eo-runtime/src/main/eo/org/eolang/false.eo index bd05a739a2..18388cc86a 100644 --- a/eo-runtime/src/main/eo/org/eolang/false.eo +++ b/eo-runtime/src/main/eo/org/eolang/false.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object is a FALSE boolean state. diff --git a/eo-runtime/src/main/eo/org/eolang/float.eo b/eo-runtime/src/main/eo/org/eolang/float.eo index 4b4140aada..95a6bce906 100644 --- a/eo-runtime/src/main/eo/org/eolang/float.eo +++ b/eo-runtime/src/main/eo/org/eolang/float.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `float` object is an abstraction of a 64-bit floating-point number that diff --git a/eo-runtime/src/main/eo/org/eolang/go.eo b/eo-runtime/src/main/eo/org/eolang/go.eo index ff3ebbf0ef..df1b874d17 100644 --- a/eo-runtime/src/main/eo/org/eolang/go.eo +++ b/eo-runtime/src/main/eo/org/eolang/go.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Non-conditional forward and backward jumps. diff --git a/eo-runtime/src/main/eo/org/eolang/int.eo b/eo-runtime/src/main/eo/org/eolang/int.eo index 21bbabec57..996b13776e 100644 --- a/eo-runtime/src/main/eo/org/eolang/int.eo +++ b/eo-runtime/src/main/eo/org/eolang/int.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `int` object is an abstraction of a 64-bit signed integer that diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo index a064c28891..f99ee925a3 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang.io +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `stdin` object reads the console. diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo index 90ff25abe0..038e47daa1 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang.io +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `stdout` object, when it's being dataized, dataizes its only diff --git a/eo-runtime/src/main/eo/org/eolang/malloc.eo b/eo-runtime/src/main/eo/org/eolang/malloc.eo index 3389214109..fdba8ce531 100644 --- a/eo-runtime/src/main/eo/org/eolang/malloc.eo +++ b/eo-runtime/src/main/eo/org/eolang/malloc.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `malloc` object is an abstraction of a storage of data in heap diff --git a/eo-runtime/src/main/eo/org/eolang/nan.eo b/eo-runtime/src/main/eo/org/eolang/nan.eo index e1941fa030..454ef7dc0b 100644 --- a/eo-runtime/src/main/eo/org/eolang/nan.eo +++ b/eo-runtime/src/main/eo/org/eolang/nan.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Not a number. diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index 618d3c4588..893e8d4191 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Negative infinity. diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 229ffacefc..0b26575094 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Positive infinity. diff --git a/eo-runtime/src/main/eo/org/eolang/rust.eo b/eo-runtime/src/main/eo/org/eolang/rust.eo index 9afd77931f..fd4d0eba73 100644 --- a/eo-runtime/src/main/eo/org/eolang/rust.eo +++ b/eo-runtime/src/main/eo/org/eolang/rust.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Rust insert. diff --git a/eo-runtime/src/main/eo/org/eolang/seq.eo b/eo-runtime/src/main/eo/org/eolang/seq.eo index ef6a2d2220..f97c27b150 100644 --- a/eo-runtime/src/main/eo/org/eolang/seq.eo +++ b/eo-runtime/src/main/eo/org/eolang/seq.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object, when being dataized, dataizes all provided diff --git a/eo-runtime/src/main/eo/org/eolang/string.eo b/eo-runtime/src/main/eo/org/eolang/string.eo index 70aa675231..65c88996ae 100644 --- a/eo-runtime/src/main/eo/org/eolang/string.eo +++ b/eo-runtime/src/main/eo/org/eolang/string.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `string` object is an abstraction of a text string, which diff --git a/eo-runtime/src/main/eo/org/eolang/switch.eo b/eo-runtime/src/main/eo/org/eolang/switch.eo index b28825feed..a8dbe3802c 100644 --- a/eo-runtime/src/main/eo/org/eolang/switch.eo +++ b/eo-runtime/src/main/eo/org/eolang/switch.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object allows to choose right options according to cases conditions. diff --git a/eo-runtime/src/main/eo/org/eolang/true.eo b/eo-runtime/src/main/eo/org/eolang/true.eo index 1bcc96150b..db3ec2b027 100644 --- a/eo-runtime/src/main/eo/org/eolang/true.eo +++ b/eo-runtime/src/main/eo/org/eolang/true.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The object is a TRUE boolean state. diff --git a/eo-runtime/src/main/eo/org/eolang/try.eo b/eo-runtime/src/main/eo/org/eolang/try.eo index be0e8597ea..b0a4bd574a 100644 --- a/eo-runtime/src/main/eo/org/eolang/try.eo +++ b/eo-runtime/src/main/eo/org/eolang/try.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Try, catch and finally. This object helps catch errors created by the diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index ca60c46bde..519b2da26b 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # Tuple. diff --git a/eo-runtime/src/main/eo/org/eolang/while.eo b/eo-runtime/src/main/eo/org/eolang/while.eo index c6be0916b7..aefe197109 100644 --- a/eo-runtime/src/main/eo/org/eolang/while.eo +++ b/eo-runtime/src/main/eo/org/eolang/while.eo @@ -24,6 +24,7 @@ +home https://github.com/objectionary/eo +package org.eolang +rt jvm org.eolang:eo-runtime:0.0.0 ++rt node eo2js-runtime:0.0.0 +version 0.0.0 # The `while` object is very similar to a loop with a pre-condition.