From 77e7dc1ac70976e39f2bd3bb91f49ab1f25ef524 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 5 Apr 2016 12:53:45 +0200 Subject: Add support for scope/target-qualified variable expansion For example: print $(dir/:var) print $(file{target}:var) print $(dir/file{target}:var) Note that if the scope/target does not (yet) exists, it will be created. --- build2/parser | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'build2/parser') diff --git a/build2/parser b/build2/parser index 89ce9b8..ced81c3 100644 --- a/build2/parser +++ b/build2/parser @@ -183,11 +183,12 @@ namespace build2 // Utilities. // protected: + class enter_scope; + class enter_target; - // Switch to a new current scope. Note that this function might - // also have to switch to a new root scope if the new current - // scope is in another project. So both must be saved and - // restored. + // Switch to a new current scope. Note that this function might also have + // to switch to a new root scope if the new current scope is in another + // project. So both must be saved and restored. // void switch_scope (const dir_path&); -- cgit v1.1