From fbcc5f4ee5bd629474047531f76beaa19c62972b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Sun, 9 Jul 2017 00:10:22 +0100 Subject: Support experimental feature pragma --- libsolidity/ast/ASTAnnotations.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libsolidity/ast') diff --git a/libsolidity/ast/ASTAnnotations.h b/libsolidity/ast/ASTAnnotations.h index f757f03c..083ecfa4 100644 --- a/libsolidity/ast/ASTAnnotations.h +++ b/libsolidity/ast/ASTAnnotations.h @@ -61,6 +61,8 @@ struct SourceUnitAnnotation: ASTAnnotation std::string path; /// The exported symbols (all global symbols). std::map> exportedSymbols; + /// Experimental feature pragmas. + std::set experimentalFeatures; }; struct ImportAnnotation: ASTAnnotation -- cgit