mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 06:45:43 +02:00
Remove scope.
This commit is contained in:
parent
a0a2285cff
commit
3684997cf5
1 changed files with 5 additions and 6 deletions
|
@ -14,19 +14,18 @@ package org.eclipse.cdt.debug.mi.core.event;
|
|||
public class MIVarChangedEvent extends MIChangedEvent {
|
||||
|
||||
String varName;
|
||||
boolean inScope;
|
||||
|
||||
public MIVarChangedEvent(int token, String var, boolean scope) {
|
||||
public MIVarChangedEvent(String var) {
|
||||
this(0, var);
|
||||
}
|
||||
|
||||
public MIVarChangedEvent(int token, String var) {
|
||||
super(token);
|
||||
varName = var;
|
||||
inScope = scope;
|
||||
}
|
||||
|
||||
public String getVarName() {
|
||||
return varName;
|
||||
}
|
||||
|
||||
public boolean isInScope() {
|
||||
return inScope;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue