@@ -29,7 +29,7 @@ NS_ASSUME_NONNULL_BEGIN
29
29
@property (atomic, weak) id<VT100ScreenSideEffectPerforming> sideEffectPerformer;
30
30
@property (nonatomic, readonly) iTermTokenExecutor *tokenExecutor;
31
31
@property (nonatomic) BOOL exited;
32
- @property (nonatomic, strong, readonly) VT100Terminal *terminal;
32
+ @property (nonatomic, strong, readonly, nullable ) VT100Terminal *terminal;
33
33
@property (nonatomic, strong) iTermEchoProbe *echoProbe;
34
34
@property (nonatomic, weak) id<iTermEchoProbeDelegate> echoProbeDelegate;
35
35
@property (nullable, nonatomic, strong) VT100ScreenState *mainThreadCopy;
@@ -106,7 +106,7 @@ NS_ASSUME_NONNULL_BEGIN
106
106
- (void)appendStringAtCursor:(NSString *)string;
107
107
- (void)appendScreenCharArrayAtCursor:(const screen_char_t *)buffer
108
108
length:(int)len
109
- externalAttributeIndex:(id<iTermExternalAttributeIndexReading>)externalAttributes;
109
+ externalAttributeIndex:(id<iTermExternalAttributeIndexReading> _Nullable )externalAttributes;
110
110
- (void)appendTabAtCursor:(BOOL)setBackgroundColors;
111
111
- (void)appendScreenChars:(const screen_char_t *)line
112
112
length:(int)length
@@ -220,9 +220,9 @@ void VT100ScreenEraseCell(screen_char_t *sct,
220
220
221
221
// This is like setPromptStartLine: but with lots of side effects that are desirable for the
222
222
// regular shell integration flow.
223
- - (VT100ScreenMark *)promptDidStartAt:(VT100GridAbsCoord)coord wasInCommand:(BOOL)wasInCommand detectedByTrigger:(BOOL)detectedByTrigger;
223
+ - (VT100ScreenMark * _Nullable )promptDidStartAt:(VT100GridAbsCoord)coord wasInCommand:(BOOL)wasInCommand detectedByTrigger:(BOOL)detectedByTrigger;
224
224
225
- - (VT100ScreenMark *)setPromptStartLine:(int)line detectedByTrigger:(BOOL)detectedByTrigger;
225
+ - (VT100ScreenMark * _Nullable )setPromptStartLine:(int)line detectedByTrigger:(BOOL)detectedByTrigger;
226
226
- (void)didUpdatePromptLocation;
227
227
- (void)incrementClearCountForCommandMark:(id<VT100ScreenMarkReading>)screenMarkDoppelganger;
228
228
@@ -273,7 +273,7 @@ void VT100ScreenEraseCell(screen_char_t *sct,
273
273
274
274
- (void)removeAnnotation:(id<PTYAnnotationReading>)annotation;
275
275
276
- - (id<PTYAnnotationReading>)addNoteWithText:(NSString *)text inAbsoluteRange:(VT100GridAbsCoordRange)absRange;
276
+ - (id<PTYAnnotationReading> _Nullable )addNoteWithText:(NSString *)text inAbsoluteRange:(VT100GridAbsCoordRange)absRange;
277
277
278
278
- (void)addAnnotation:(id<PTYAnnotationReading>)annotation
279
279
inRange:(VT100GridCoordRange)range
0 commit comments