aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.h
diff options
context:
space:
mode:
authorGravatar Aaron Gyes <me@aaron.gy>2016-06-05 21:42:01 -0700
committerGravatar Aaron Gyes <me@aaron.gy>2016-06-05 21:42:01 -0700
commit7ef40f4e53827e9e2c429230f5fadbd093cd6402 (patch)
tree40f7cdc623615302ba40ee5e0dfa57c3994dada8 /src/parser.h
parent9f21e3792aed2ac0c9bbbc94d3e4ff169cc0288a (diff)
parent2fafb13eaa30981754a8cd0ba8f3c082e3147fa8 (diff)
Merge pull request #3118 from floam/headerdoc-fixes
Update Xcode project, HeaderDoc comments. Fix various invalid HeaderDoc comments. Normalize autoload.cpp/autoload.h as an example of something closer to "proper" HeaderDoc formatting. Have clang/Xcode validate HeaderDoc comments. Remove key_reader.cpp from Xcode project.
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/parser.h b/src/parser.h
index d3fd8803..653ca8c6 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -312,15 +312,6 @@ class parser_t {
/// parser_t will clean it up.
profile_item_t *create_profile_item();
- /// Test if the specified string can be parsed, or if more bytes need to be read first. The
- /// result will have the PARSER_TEST_ERROR bit set if there is a syntax error in the code, and
- /// the PARSER_TEST_INCOMPLETE bit set if the code contains unclosed blocks.
- ///
- /// \param buff the text buffer to test
- /// \param block_level if non-null, the block nesting level will be filled out into this array
- /// \param out if non-null, any errors in the command will be filled out into this buffer
- /// \param prefix the prefix string to prepend to each error message written to the \c out
- /// buffer.
void get_backtrace(const wcstring &src, const parse_error_list_t &errors,
wcstring *output) const;