Ancestry.Daisy.Language.AST.Trace.StatementTrace.StatementTrace C# (CSharp) Method

StatementTrace() public method

public StatementTrace ( string statement, List tracings, object scope, bool outcome ) : System.Collections.Generic
statement string
tracings List
scope object
outcome bool
return System.Collections.Generic
        public StatementTrace(string statement, List<string> tracings, object scope, bool outcome)
            : base(scope, outcome)
        {
            Text = statement;
            Tracings = tracings;
        }
StatementTrace