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

More interpreter optimizations #107

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1c5d3d1
Trying to optimize interpreter
Saiv46 Jun 4, 2020
a8419b9
Merge branch 'master' of https://github.com/ProtoDef-io/node-protodef
Saiv46 Jun 13, 2020
019bb99
Revert "Merge branch 'master' of https://github.com/ProtoDef-io/node-…
Saiv46 Jun 13, 2020
e08e58e
Revert "Revert "Merge branch 'master' of https://github.com/ProtoDef-…
Saiv46 Jun 13, 2020
a68af84
Refactored things
Saiv46 Jun 13, 2020
ee00fca
Merge branch 'patch-1'
Saiv46 Jun 13, 2020
ee6b8b3
Implemented removeType & organizing changes
Saiv46 Jun 13, 2020
43f7401
Implemented `createEncoding` (closes #69)
Saiv46 Jun 13, 2020
2a34b91
Removed `DATATYPE_NOCOPY`
Saiv46 Jun 13, 2020
63de431
Removed DATATYPE_NOCOPY constant
Saiv46 Jun 15, 2020
3d168b0
Revert "Removed `DATATYPE_NOCOPY`"
Saiv46 Jun 16, 2020
b444547
Update interpreter.js
Saiv46 Jun 16, 2020
ec4c9db
Merge branch 'master' of https://github.com/Saiv46/node-protodef
Saiv46 Jun 16, 2020
48220c8
fix(interpreter/structures): Bugfix
Saiv46 Jun 17, 2020
932809e
fix(interpreter.js): Continuing expirement with DATATYPE_NOCOPY
Saiv46 Jun 17, 2020
dc47292
Lint quickfix
Saiv46 Jun 17, 2020
f1610e1
Optimize `constructProduceArgs`
Saiv46 Jan 3, 2021
9b6285c
Optimize encoding and `tryDoc`
Saiv46 Jan 3, 2021
84c1fad
Update serializer.js
Saiv46 Jan 3, 2021
86f3ba9
Optimize type extension
Saiv46 Jan 3, 2021
21f81af
Using `Result` struct
Saiv46 Jan 3, 2021
f927c8b
Using upstream
Saiv46 Jan 3, 2021
90288f1
Removed `DATATYPE_NOCOPY`
Saiv46 Jan 3, 2021
8dadd50
Refactor
Saiv46 Jan 3, 2021
88eb235
Refactor
Saiv46 Jan 3, 2021
359a3c6
More bound functions optimizations
Saiv46 Jan 3, 2021
3df8aca
Update utils.js
Saiv46 Jan 3, 2021
fcedeed
Update utils.js
Saiv46 Jan 3, 2021
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
2 changes: 0 additions & 2 deletions .npmignore

This file was deleted.

11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "A simple yet powerful way to define binary protocols",
"main": "index.js",
"author": "roblabla <[email protected]>",
"sideEffects": false,
"scripts": {
"prepare": "require-self",
"lint": "standard",
Expand All @@ -15,13 +16,14 @@
"tonicExampleFilename": "example.js",
"license": "MIT",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.reduce": "^4.6.0",
"protodef-validator": "^1.2.2",
"readable-stream": "^3.0.3"
},
"engines": {
"node": ">=6"
"node": ">=12"
},
"bugs": {
"url": "https://github.com/ProtoDef-io/node-protodef/issues"
Expand All @@ -38,5 +40,10 @@
"mocha": "^5.2.0",
"require-self": "^0.1.0",
"standard": "^12.0.1"
}
},
"files": [
"src/",
"ProtoDef/schemas/",
"*.js"
]
}
Loading