aboutsummaryrefslogtreecommitdiff
path: root/tests/function/buildfile
AgeCommit message (Collapse)AuthorFilesLines
2017-03-14Implement implied buildfile supportBoris Kolpackov1-5/+0
In essence, if the buildfile is: ./: */ Then it can be omitted entirely (provided there is at least one subdirectory).
2017-01-23Implement automatic loading of directory buildfilesBoris Kolpackov1-3/+1
Now instead of explicitly writing: d = foo/ bar/ ./: $d include $d We can (usually) just write: ./: foo/ bar/
2017-01-05Update copyright yearBoris Kolpackov1-1/+1
2016-11-23Implement few builtin functions that can operate on any valueBoris Kolpackov1-1/+1
type() null() empty () identity()
2016-11-18Add function machinery, implement path.normalize()Boris Kolpackov1-0/+7
Note that multi-argument functions are not yet "callable" since there is no support for value packs.