コード例 #1
0
ファイル: AD7Property.cs プロジェクト: AlexanderSher/RTVS-Old
        public AD7Property(AD7StackFrame stackFrame, DebugEvaluationResult result, bool isSynthetic = false, bool isFrameEnvironment = false) {
            StackFrame = stackFrame;
            EvaluationResult = result;
            IsSynthetic = isSynthetic;
            IsFrameEnvironment = isFrameEnvironment;

            _children = Lazy.Create(CreateChildren);
            _reprToString = Lazy.Create(CreateReprToString);
        }
コード例 #2
0
ファイル: AD7Property.cs プロジェクト: nomada2/RTVS
        public AD7Property(AD7StackFrame stackFrame, DebugEvaluationResult result, bool isSynthetic = false, bool isFrameEnvironment = false)
        {
            StackFrame         = stackFrame;
            EvaluationResult   = result;
            IsSynthetic        = isSynthetic;
            IsFrameEnvironment = isFrameEnvironment;

            _children     = Lazy.Create(CreateChildren);
            _reprToString = Lazy.Create(CreateReprToString);
        }
コード例 #3
0
 public AD7Expression(AD7StackFrame stackFrame, string expression) {
     _expression = expression;
     StackFrame = stackFrame;
 }
コード例 #4
0
 public AD7Expression(AD7StackFrame stackFrame, string expression)
 {
     _expression = expression;
     StackFrame  = stackFrame;
 }
コード例 #5
0
 public AD7MemoryAddress(AD7StackFrame stackFrame) :
     this(stackFrame.Engine, stackFrame.StackFrame.FileName, stackFrame.StackFrame.LineNumber) {
 }
コード例 #6
0
 public AD7MemoryAddress(AD7StackFrame stackFrame) :
     this(stackFrame.Engine, stackFrame.StackFrame.FileName, stackFrame.StackFrame.LineNumber)
 {
 }