-
-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breaking Change: split ext_opts into node_ext_opts and child_ext_opts.
The former is applied to this specific node, the latter to children of that snippetNode. Also add merge_{node,child}_ext_opts for control merge-behaviour of eg. a nodes ext_opts with that of the surrounding snippet (both default to true). This is a breaking change because function/dynamicNode no longer have the variable number of user_args as their last arg. That is now a table, `opts`, which may contain the `user_args`. ```lua d(pos, func, argnodes, user_arg1, user_arg2) -- becomes d(pos, func, argnodes, {user_args = {user_arg1, user_arg2}}) -- and likewise for functionNode. ```
- Loading branch information
Showing
12 changed files
with
321 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.