AST for try and catch.

This commit is contained in:
chriseth
2019-09-23 17:22:09 +02:00
parent 9ecd51c54d
commit a66c354698
8 changed files with 154 additions and 3 deletions
+2
View File
@@ -218,6 +218,8 @@ enum class FunctionCallKind
struct FunctionCallAnnotation: ExpressionAnnotation
{
FunctionCallKind kind = FunctionCallKind::Unset;
/// If true, this is the external call of a try statement.
bool tryCall = false;
};
}