aboutsummaryrefslogtreecommitdiff
path: root/build2/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-22 16:10:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-22 16:10:31 +0200
commit28eae955f819df44926a89c6c9f41188b8e2cc02 (patch)
treed5dcb4341c29171db70623b652fb931b24bca04e /build2/parser.cxx
parent6bba67ee786693e76adfc3ee4b129635fd1b6997 (diff)
Minor fix
Diffstat (limited to 'build2/parser.cxx')
-rw-r--r--build2/parser.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/build2/parser.cxx b/build2/parser.cxx
index 2ebb6fb..da39696 100644
--- a/build2/parser.cxx
+++ b/build2/parser.cxx
@@ -226,7 +226,7 @@ namespace build2
bool parser::
parse_clause (token& t, type& tt, bool one)
{
- tracer trace ("parser::clause", &path_);
+ tracer trace ("parser::parse_clause", &path_);
// clause() should always stop at a token that is at the beginning of
// the line (except for eof). That is, if something is called to parse
@@ -761,7 +761,7 @@ namespace build2
void parser::
parse_source (token& t, type& tt)
{
- tracer trace ("parser::source", &path_);
+ tracer trace ("parser::parse_source", &path_);
// The rest should be a list of buildfiles. Parse them as names in the
// value mode to get variable expansion and directory prefixes.
@@ -834,7 +834,7 @@ namespace build2
void parser::
parse_include (token& t, type& tt)
{
- tracer trace ("parser::include", &path_);
+ tracer trace ("parser::parse_include", &path_);
if (root_->src_path_ == nullptr)
fail (t) << "inclusion during bootstrap";
@@ -973,7 +973,7 @@ namespace build2
void parser::
parse_import (token& t, type& tt)
{
- tracer trace ("parser::import", &path_);
+ tracer trace ("parser::parse_import", &path_);
if (root_->src_path_ == nullptr)
fail (t) << "import during bootstrap";
@@ -1121,7 +1121,7 @@ namespace build2
void parser::
parse_export (token& t, type& tt)
{
- tracer trace ("parser::export", &path_);
+ tracer trace ("parser::parse_export", &path_);
scope* ps (scope_->parent_scope ());
@@ -1163,7 +1163,7 @@ namespace build2
void parser::
parse_using (token& t, type& tt)
{
- tracer trace ("parser::using", &path_);
+ tracer trace ("parser::parse_using", &path_);
bool optional (t.value.back () == '?');
@@ -2043,7 +2043,7 @@ namespace build2
// Note that support for pre-parsing is partial, it does not handle
// groups ({}).
- tracer trace ("parser::names", &path_);
+ tracer trace ("parser::parse_names", &path_);
bool null (false);