mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-02 22:05:44 +02:00
copy some of the field back to the variable
This commit is contained in:
parent
b991ccf5e0
commit
67cd9ad95c
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ public class VariableObject extends CObject implements ICDIVariableObject {
|
||||||
public VariableObject(VariableObject obj) {
|
public VariableObject(VariableObject obj) {
|
||||||
super(obj.getTarget());
|
super(obj.getTarget());
|
||||||
name = obj.getName();
|
name = obj.getName();
|
||||||
|
fullName = obj.fullName;
|
||||||
|
sizeof = obj.sizeof;
|
||||||
|
type = obj.type;
|
||||||
try {
|
try {
|
||||||
frame = obj.getStackFrame();
|
frame = obj.getStackFrame();
|
||||||
} catch (CDIException e) {
|
} catch (CDIException e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue