Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#120): Update to 0.44.0 #121

Merged
merged 5 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [ubuntu-24.04, windows-2022, macos-13]
node: [16]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- run: npm install
- run: npm install --force -g grunt-cli
- run: npm test
21 changes: 17 additions & 4 deletions eo2js-runtime/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 0 additions & 26 deletions eo2js-runtime/src/objects/org/eolang/cage$encaged$encage.js

This file was deleted.

21 changes: 0 additions & 21 deletions eo2js-runtime/src/objects/org/eolang/cage$encaged$φ.js

This file was deleted.

23 changes: 0 additions & 23 deletions eo2js-runtime/src/objects/org/eolang/cage$φ.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const dataized = require('../../../runtime/dataized');
const data = require('../../../runtime/data')

/**
* Malloc.of.allocated.resize.
* @return {Object} - Malloc.of.allocated.resize object
* Malloc.of.allocated.resized.
* @return {Object} - Malloc.of.allocated.resized object
*/
const malloc$of$allocated$resize = function() {
const malloc$of$allocated$resized = function() {
const obj = object('malloc$of$allocated$resize')
obj.attrs['size'] = at_void('size')
obj.assets[LAMBDA] = function(self) {
Expand All @@ -23,4 +23,4 @@ const malloc$of$allocated$resize = function() {
return obj
}

module.exports = malloc$of$allocated$resize
module.exports = malloc$of$allocated$resized
13 changes: 7 additions & 6 deletions eo2js-runtime/src/objects/org/eolang/malloc$of$φ.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ const malloc$of$φ = function() {
)
let res;
try {
dataized(
rho.take('scope').with({
0: rho.take('allocated').with({
id: data.toObject(identifier)
res = data.toObject(
dataized(
rho.take('scope').with({
0: rho.take('allocated').with({
id: data.toObject(identifier)
})
})
})
)
)
res = data.toObject(heaps.read(identifier, 0, heaps.size(identifier)))
} finally {
heaps.free(identifier)
}
Expand Down
21 changes: 0 additions & 21 deletions eo2js-runtime/src/objects/org/eolang/string$length.js

This file was deleted.

44 changes: 0 additions & 44 deletions eo2js-runtime/src/objects/org/eolang/string$slice.js

This file was deleted.

72 changes: 0 additions & 72 deletions eo2js-runtime/src/runtime/cages.js

This file was deleted.

Loading