public StackFrameLine(StackFrameLineType type, ITextEditorUIContext uiContext, SerializedDnToken methodKey, uint ilOffset) : base(methodKey, ilOffset) { this.type = type; this.uiContext = uiContext; }
public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, MethodKey methodKey, uint ilOffset) : base(methodKey, ilOffset) { this.type = type; this.decompilerTextView = decompilerTextView; }
public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, SerializedDnSpyToken methodKey, uint ilOffset) : base(methodKey, ilOffset) { this.type = type; this.decompilerTextView = decompilerTextView; }