Ancestry.Daisy.Language.AST.Trace.StatementTrace.StatementTrace C# (CSharp) Метод

StatementTrace() публичный Метод

public StatementTrace ( string statement, List tracings, object scope, bool outcome ) : System.Collections.Generic
statement string
tracings List
scope object
outcome bool
Результат System.Collections.Generic
        public StatementTrace(string statement, List<string> tracings, object scope, bool outcome)
            : base(scope, outcome)
        {
            Text = statement;
            Tracings = tracings;
        }
StatementTrace