depot
this commit
canon
subtree-staging
monorepo for the virus lounge
The Virus Lounge
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tvix
/
eval
/
src
Age
Commit message (
Expand
)
Author
Files
Lines
2022-10-10
r/5074
feat(tvix/eval): Implement builtins.concatMap
Griffin Smith
3
-0
/
+15
2022-10-09
r/5073
feat(tvix/eval): Implement builtins.listToAttrs
Griffin Smith
3
-0
/
+33
2022-10-09
r/5072
refactor(tvix/eval): Use Display impl for Error message
Griffin Smith
1
-153
/
+161
2022-10-08
r/5070
feat(tvix/eval): Handle invoking binary with a directory
Griffin Smith
1
-9
/
+7
2022-10-08
r/5069
fix(tvix/eval): end scope after compiling legacy let bindings
Vincent Ambo
3
-0
/
+7
2022-10-08
r/5068
feat(tvix/tests): Import default.nix inside directory
Griffin Smith
5
-2
/
+11
2022-10-08
r/5067
refactor(tvix/eval): Encapsulate Value::Attrs construction
Griffin Smith
4
-6
/
+13
2022-10-08
r/5066
fix(tvix/eval): Force thunks when comparing against ground vals
Griffin Smith
3
-3
/
+13
2022-10-08
r/5065
feat(tvix/eval): add some slightly more descriptive span labels
Vincent Ambo
1
-1
/
+36
2022-10-08
r/5064
feat(tvix/eval): chain error spans for thunk errors
Vincent Ambo
1
-0
/
+21
2022-10-08
r/5063
feat(tvix/eval): fancy-format parse errors returned by rnix
Vincent Ambo
4
-23
/
+267
2022-10-08
r/5058
refactor(tvix/eval): implement ToSpan directly for rnix::TextRange
Vincent Ambo
1
-10
/
+9
2022-10-08
r/5057
refactor(tvix/eval): move `spans` module to crate root
Vincent Ambo
3
-11
/
+12
2022-10-07
r/5050
feat(tvix/eval): coerce values to paths when importing
Vincent Ambo
2
-13
/
+2
2022-10-07
r/5049
feat(tvix/eval): add method for emitting runtime warnings
Vincent Ambo
3
-7
/
+45
2022-10-07
r/5048
feat(tvix/eval): insert `import` into the builtins itself
Vincent Ambo
3
-13
/
+29
2022-10-06
r/5041
feat(tvix/eval): initial implementation of `builtins.import`
Vincent Ambo
4
-8
/
+143
2022-10-06
r/5040
refactor(tvix/eval): builtins now contain closures
Vincent Ambo
2
-93
/
+115
2022-10-05
r/5038
feat(tvix/eval): implement tvix's user-agent, err, nixVersion
Vincent Ambo
3
-0
/
+12
2022-10-05
r/5035
refactor(tvix/eval): introduce source::SourceCode type
Vincent Ambo
7
-48
/
+97
2022-10-04
r/5034
refactor(tvix/eval): remove unnecessary clones in compiler
Vincent Ambo
3
-150
/
+146
2022-10-04
r/5033
refactor(tvix/eval): split observer traits in two
Vincent Ambo
3
-18
/
+22
2022-10-04
r/5032
feat(tvix/eval): use fancy error formatting in REPL
Vincent Ambo
3
-9
/
+16
2022-10-04
r/5028
fix(tvix/eval): forward thunk error codes from inner errors
Vincent Ambo
1
-1
/
+7
2022-10-04
r/5027
feat(tvix/eval): implement `builtins.currentTime`
Vincent Ambo
1
-2
/
+12
2022-10-04
r/5026
refactor(tvix/eval): allow impure Value builtins
Vincent Ambo
2
-10
/
+27
2022-10-03
r/5024
feat(tvix/eval): implement `builtins.any`
Vincent Ambo
3
-0
/
+30
2022-10-03
r/5023
feat(tvix/eval): implement `builtins.all`
Vincent Ambo
3
-0
/
+30
2022-10-03
r/5022
feat(tvix/eval): implement builtins.concatLists
Vincent Ambo
3
-0
/
+21
2022-10-03
r/5021
refactor(tvix/eval): implement IntoIterator for NixList
Vincent Ambo
1
-4
/
+9
2022-10-03
r/5020
fix(tvix/eval): do not fail when finalising non-capturing values
Vincent Ambo
1
-1
/
+6
2022-10-03
r/5019
feat(tvix/eval): implement tail-calling of __functor attributes
Vincent Ambo
3
-19
/
+39
2022-09-30
r/5006
fix(tvix/eval): fix thunk borrowing error in force_for_output
Vincent Ambo
3
-1
/
+7
2022-09-30
r/5005
test(tvix/eval): add simple nested key tests in let & rec attrs
Vincent Ambo
4
-0
/
+10
2022-09-30
r/5004
chore(tvix/eval): remove unused field in TrackedBindings
Vincent Ambo
1
-7
/
+3
2022-09-30
r/5003
test(tvix/eval): reactivate nested key tests in plain attribute sets
Vincent Ambo
9
-0
/
+0
2022-09-30
r/5002
feat(tvix/eval): implement nested keys
Vincent Ambo
1
-29
/
+60
2022-09-30
r/5001
refactor(tvix/eval): split out AttributeSet::from_ast helper
Vincent Ambo
1
-26
/
+31
2022-09-30
r/5000
chore(tvix/eval): remove `nesting_level` tracking
Vincent Ambo
1
-25
/
+2
2022-09-29
r/4999
refactor(tvix/eval): clean up representation flip in bindings
Vincent Ambo
1
-37
/
+32
2022-09-29
r/4998
feat(tvix/eval): (partially) track nesting level of attrsets
Vincent Ambo
1
-29
/
+82
2022-09-29
r/4997
feat(tvix/eval): merge attribute sets in bindings
Vincent Ambo
5
-13
/
+133
2022-09-29
r/4996
feat(tvix/eval): add error kind for unmergeable nested attributes
Vincent Ambo
2
-1
/
+14
2022-09-29
r/4995
feat(tvix/eval): add scaffolding for merging nested attribute sets
Vincent Ambo
2
-25
/
+116
2022-09-29
r/4994
refactor(tvix/eval): emit OpAttrs inside of compile_bindings
Vincent Ambo
2
-6
/
+6
2022-09-29
r/4993
refactor(tvix/eval): introduce `TrackedBindings` struct
Vincent Ambo
1
-11
/
+34
2022-09-29
r/4992
refactor(tvix/eval): compile_recursive_scope -> compile_bindings
Vincent Ambo
1
-4
/
+4
2022-09-29
r/4991
chore(tvix/eval): fix all current clippy lints
Vincent Ambo
4
-6
/
+6
2022-09-29
r/4990
chore(tvix/eval): remove existing nested key implementation
Vincent Ambo
4
-101
/
+3
2022-09-29
r/4989
refactor(tvix/eval): merge all bindings creation logic
Vincent Ambo
13
-138
/
+8
[prev]
[next]