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

feat(cel): initial commit #36

Draft
wants to merge 34 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e34e529
feat(cel): initial commit
jafaircl Sep 27, 2024
a148834
feat(cel): implement createList and createStruct
jafaircl Sep 27, 2024
c09e44c
feat(cel): port cel-go macro tests
jafaircl Sep 29, 2024
643ade3
test(cel): add c++ tests
jafaircl Sep 29, 2024
542cc05
fix(cel): update macros to match cel-go impl
jafaircl Sep 30, 2024
4d1ca52
fix(cel): refactoring & tests
jafaircl Sep 30, 2024
d8a44ed
feat(cel): rename CELVisitor to CELParser
jafaircl Sep 30, 2024
9bc7813
feat(cel): add parser error handling & tests
jafaircl Oct 2, 2024
0eb02a8
feat(cel): add recursion errors
jafaircl Oct 2, 2024
532c035
feat(cel): pass ids to utility functions instead of id helper
jafaircl Oct 2, 2024
e9857b8
feat(cel): add source info
jafaircl Oct 3, 2024
521d84b
feat(cel): add recusion checking in visit methods
jafaircl Oct 3, 2024
6644a44
feat(cel): update utility functions & use them for testing/runtime; f…
jafaircl Oct 3, 2024
584f410
feat(cel): checker initial commit
jafaircl Oct 5, 2024
c2b7255
feat(cel): initial check for calls
jafaircl Oct 6, 2024
ad10940
feat(cel): check adding arrays
jafaircl Oct 6, 2024
078e55b
test(cel): add more tests & fix test fixture for checker
jafaircl Oct 6, 2024
d63e924
feat(cel): add checkCreateMap
jafaircl Oct 7, 2024
a05c765
feat(cel): add checkCreateStruct and more standard function decls
jafaircl Oct 7, 2024
c381508
feat(cel): comprehension initial commit
jafaircl Oct 8, 2024
c06539c
feat(cel): this gets most existing check tests to pass and makes code…
jafaircl Oct 9, 2024
f8c4d68
feat(cel): refactor checker so tests pass except a couple of edge cases
jafaircl Oct 10, 2024
5eb25a5
test(cel): add remaining test cases
jafaircl Oct 10, 2024
ddfec5f
feat(cel): add optionals
jafaircl Oct 22, 2024
1170e94
feat(cel): rearragne to be closer to other implementations
jafaircl Oct 22, 2024
4caed4d
feat(cel): more organization & tweaks
jafaircl Oct 23, 2024
32d6040
feat(cel): interpreter checkpoint
jafaircl Oct 30, 2024
627b67e
feat(cel): interpreter checkpoint
jafaircl Oct 31, 2024
bdb35d1
feat(cel): interpreter checkpoint
jafaircl Oct 31, 2024
a6414e8
feat(cel): interpreter checkpoint
jafaircl Nov 5, 2024
8b664f4
feat(cel): bring checker environment in line with other implementations
jafaircl Nov 5, 2024
760984f
feat(cel): handle some todos
jafaircl Nov 6, 2024
5a1fdb6
feat(cel): converting to use of refvals checkpoint
jafaircl Nov 7, 2024
b1a3186
feat(cel): timestamp date parsing
jafaircl Nov 8, 2024
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: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@buf:registry=https://buf.build/gen/npm/v1/
script-shell=zsh
28 changes: 28 additions & 0 deletions .verdaccio/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# path to a directory with all packages
storage: ../tmp/local-registry/storage

# a list of other known repositories we can talk to
uplinks:
npmjs:
url: https://registry.npmjs.org/
maxage: 60m

packages:
'**':
# give all users (including non-authenticated users) full access
# because it is a local registry
access: $all
publish: $all
unpublish: $all

# if package is not available locally, proxy requests to npm registry
proxy: npmjs

# log settings
logs:
type: stdout
format: pretty
level: warn

publish:
allow_offline: true # set offline to true to allow publish offline
19 changes: 18 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"pluginsConfig": {
"@nrwl/js": {
"analyzeSourceFiles": true
},
"@nx/js": {
"analyzeSourceFiles": true
}
},
"extends": "nx/presets/npm.json",
Expand Down Expand Up @@ -33,9 +36,23 @@
},
"e2e": {
"cache": true
},
"@nx/vite:build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^production"]
}
},
"parallel": 3,
"useInferencePlugins": false,
"defaultBase": "main"
"defaultBase": "main",
"release": {
"version": {
"preVersionCommand": "npx nx run-many -t build"
}
}
}
Loading