@@ -370,7 +370,7 @@ class alignas(1 << DeclAlignInBits) Decl {
370
370
IsStatic : 1
371
371
);
372
372
373
- SWIFT_INLINE_BITFIELD (VarDecl, AbstractStorageDecl, 4 +1 +1 +1 +1 + 1 ,
373
+ SWIFT_INLINE_BITFIELD (VarDecl, AbstractStorageDecl, 4 +1 +1 +1 +1 ,
374
374
// / The specifier associated with this variable or parameter. This
375
375
// / determines the storage semantics of the value e.g. mutability.
376
376
Specifier : 4 ,
@@ -387,9 +387,6 @@ class alignas(1 << DeclAlignInBits) Decl {
387
387
// / It is up to the debugger to instruct SIL how to access this variable.
388
388
IsDebuggerVar : 1 ,
389
389
390
- // / Whether this is a property defined in the debugger's REPL.
391
- // / FIXME: Remove this once LLDB has proper support for resilience.
392
- IsREPLVar : 1 ,
393
390
394
391
// / Whether this is the backing storage for a property wrapper.
395
392
IsPropertyWrapperBackingProperty : 1
@@ -4806,7 +4803,6 @@ class VarDecl : public AbstractStorageDecl {
4806
4803
Bits.VarDecl .Specifier = static_cast <unsigned >(Sp);
4807
4804
Bits.VarDecl .IsCaptureList = IsCaptureList;
4808
4805
Bits.VarDecl .IsDebuggerVar = false ;
4809
- Bits.VarDecl .IsREPLVar = false ;
4810
4806
Bits.VarDecl .HasNonPatternBindingInit = false ;
4811
4807
Bits.VarDecl .IsPropertyWrapperBackingProperty = false ;
4812
4808
}
@@ -5095,12 +5091,6 @@ class VarDecl : public AbstractStorageDecl {
5095
5091
void setDebuggerVar (bool IsDebuggerVar) {
5096
5092
Bits.VarDecl .IsDebuggerVar = IsDebuggerVar;
5097
5093
}
5098
-
5099
- // / Is this a special debugger REPL variable?
5100
- // / FIXME: Remove this once LLDB has proper support for resilience.
5101
- bool isREPLVar () const { return Bits.VarDecl .IsREPLVar ; }
5102
- void setREPLVar (bool IsREPLVar) {
5103
- Bits.VarDecl .IsREPLVar = IsREPLVar;
5104
5094
}
5105
5095
5106
5096
// / Retrieve the custom attribute that attaches a property wrapper to this
0 commit comments