Created
October 25, 2018 10:58
-
-
Save Synthetica9/533aa3fea35ccd79b7d4593385fa3a40 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Prelude Nix.Parser Nix.TH | |
| λ> Success ex = parseNixTextLoc "{ inherit a; }" | |
| Prelude Nix.Parser Nix.TH | |
| λ> freeVars ex | |
| fromList [] | |
| Prelude Nix.Parser Nix.TH | |
| λ> Success ex = parseNixTextLoc "{ inherit a; c = b; }" | |
| Prelude Nix.Parser Nix.TH | |
| λ> freeVars ex | |
| fromList ["b"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment