aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_constants.h
Commit message (Collapse)AuthorAge
* Rework error messages to be shorter and to handle more special bash-ismsGravatar ridiculousfish2015-04-29
| | | | | | Example: we can point $* to argv Fixes #1288
* Rewrite of fish_indentGravatar ridiculousfish2014-12-23
| | | | | Changes fish_indent to leverage new parse tree Also supports colorizing output via --html and --ansi flags.
* Update various strings for translation, avoid _ for non-translationsGravatar David Adam2014-11-25
| | | | | Use __ instead of _ as a placeholder for ignored variables in `read` statements.
* Disallow backgrounding in conditionals and before and/or bool statementsGravatar ridiculousfish2014-11-02
| | | | Fixes #1136
* Use binary search to determine what tokens are keywordsGravatar ridiculousfish2014-10-15
|
* Implement correct error message for failed process expansion.Gravatar ridiculousfish2014-05-30
|
* Run restyle.sh to enforce style rules.Gravatar ridiculousfish2014-03-31
|
* Teach parser_t how to parse an argument list that contains newlines, forGravatar ridiculousfish2014-03-27
| | | | complete -a support. Fixes #1369
* Teach parse_util_detect_errors to report invalid builtins, as found inGravatar ridiculousfish2014-03-26
| | | | issue #1252
* Merge branch 'master' into parser_cleanupGravatar ridiculousfish2014-03-26
|\ | | | | | | | | | | Conflicts: parse_constants.h parse_tree.h
| * Hopeful fix for the buildGravatar ridiculousfish2014-03-25
| |
| * Space and time optimizations for parse_node_t. Reduced size from 48Gravatar ridiculousfish2014-03-25
| | | | | | | | bytes to 20 bytes.
* | Excise use of parser_t's error() functionality. Thread aGravatar ridiculousfish2014-03-21
| | | | | | | | | | | | parse_error_list_t through all of the expand functions, enabling them to report errors more directly. Improve aspects of error reporting for expansion failures.
* | Correct the last keyword enum to reflect the actual last keywordGravatar ridiculousfish2014-03-20
|/
* Support for error detection in arguments in new parser. Restores errorGravatar ridiculousfish2014-03-04
| | | | reporting for bad arguments (e.g. with bad variable names)
* Expand the variable name as an ordinary parameter in for loops. AddedGravatar ridiculousfish2014-02-21
| | | | test for it too.
* Reimplement exec parsing. Instead of special-casing exec as a command,Gravatar ridiculousfish2014-02-13
| | | | | | promote it to a decoration (like 'command' or 'builtin'). This makes tab completion and syntax highlighting treat exec's first argument as a command and is otherwise a nice simplification. Fixes #1300
* Update style and formatting to conform to fish style guide.Gravatar ridiculousfish2014-01-15
|
* Fix for issue where unterminated quotes would attempt to be executed,Gravatar ridiculousfish2014-01-14
| | | | instead of continuing edit onto the next line.
* Further cleanup and improvements to error messagesGravatar ridiculousfish2014-01-13
|
* Support for special && and || error messages in new parserGravatar ridiculousfish2014-01-13
|
* Remove some unused definesGravatar ridiculousfish2014-01-12
|
* Support for stack overflow and infinite recursion detection in newGravatar ridiculousfish2014-01-01
| | | | parser
* Clean up and rationalize error handling in parse_execution.cppGravatar ridiculousfish2013-12-31
|
* Fix for issue where last job_list in tree would have a -1 production_idxGravatar ridiculousfish2013-12-26
| | | | because we never actually sent the terminal token type
* Clean up some error messages. Don't show the line in the error messageGravatar ridiculousfish2013-12-16
| | | | if it's the first line and we're interactive, since then it's obvious
* Initial work on backtrace support with new parserGravatar ridiculousfish2013-12-15
|
* Finish rewriting detect_errors to use new parser. All tests now pass (!)Gravatar ridiculousfish2013-12-12
|
* Initial work towards rewriting detect_errors to use new parser.Gravatar ridiculousfish2013-12-11
| | | | Low-level tests currently pass; high level tests fail.
* Initial work towars improved error reporting. Tests currently fail.Gravatar ridiculousfish2013-12-08