public override Yarn.IType VisitLine_formatted_text([NotNull] YarnSpinnerParser.Line_formatted_textContext context)
        {
            // Type-check every expression in this line, using the None
            // operator and permitting the expression to be of Any type
            foreach (var expression in context.expression())
            {
                var type = CheckOperation(expression, new[] { expression }, Operator.None, "inline expression", BuiltinTypes.Any);
                expression.Type = type;
            }

            return(BuiltinTypes.String);
        }
 /// <summary>
 /// Visit a parse tree produced by <see cref="YarnSpinnerParser.line_formatted_text"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitLine_formatted_text([NotNull] YarnSpinnerParser.Line_formatted_textContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="YarnSpinnerParser.line_formatted_text"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitLine_formatted_text([NotNull] YarnSpinnerParser.Line_formatted_textContext context)
 {
 }