summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-12-29 21:00:27 (GMT)
committerEvan Martin <martine@danga.com>2011-12-29 21:14:39 (GMT)
commit8a0c96075786c1983bdfa2f37f32b75200ea0334 (patch)
tree95e2b0c24aedcda9ec5ed09329e69fd7a1925212 /src/graph.h
parentad7d9f43f1bd8e04321d8fdb07ebf7b96ab525a1 (diff)
downloadNinja-8a0c96075786c1983bdfa2f37f32b75200ea0334.zip
Ninja-8a0c96075786c1983bdfa2f37f32b75200ea0334.tar.gz
Ninja-8a0c96075786c1983bdfa2f37f32b75200ea0334.tar.bz2
switch the core ninja parser to use re2c for the lexer
- Delete the old "Tokenizer" code. - Write separate tests for the lexer distinct from the parser. - Switch the parser to use the new code. - New lexer error output has file:line numbers so e.g. Emacs can jump your editor to the syntax error. - The EvalEnv ($-interpolation) code is now part of the lexer as well.
Diffstat (limited to 'src/graph.h')
-rw-r--r--src/graph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graph.h b/src/graph.h
index b483c6d..20765a3 100644
--- a/src/graph.h
+++ b/src/graph.h
@@ -109,10 +109,10 @@ struct Rule {
const EvalString& description() const { return description_; }
const EvalString& depfile() const { return depfile_; }
- private:
+ // TODO: private:
+
// Allow the parsers to reach into this object and fill out its fields.
friend class ManifestParser;
- friend class ParserTest;
string name_;