@@ -81,7 +81,7 @@ static bool isRootShadowNode(const ShadowNode& shadowNode) {
81
81
NativeDOM::NativeDOM (std::shared_ptr<CallInvoker> jsInvoker)
82
82
: NativeDOMCxxSpec(std::move(jsInvoker)) {}
83
83
84
- #pragma mark - Methods from the ` Node` interface (for ` ReadOnlyNode` ).
84
+ #pragma mark - Methods from the Node interface (for ReadOnlyNode).
85
85
86
86
double NativeDOM::compareDocumentPosition (
87
87
jsi::Runtime& rt,
@@ -108,7 +108,7 @@ double NativeDOM::compareDocumentPosition(
108
108
109
109
if (isRootShadowNode (*otherShadowNode)) {
110
110
// If the other is a root node, we just need to check if it is its
111
- // ` documentElement`
111
+ // documentElement
112
112
return (surfaceId == otherShadowNode->getSurfaceId ())
113
113
? dom::DOCUMENT_POSITION_CONTAINED_BY |
114
114
dom::DOCUMENT_POSITION_FOLLOWING
@@ -204,7 +204,7 @@ bool NativeDOM::isConnected(jsi::Runtime& rt, jsi::Value nativeNodeReference) {
204
204
return dom::isConnected (currentRevision, *shadowNode);
205
205
}
206
206
207
- #pragma mark - Methods from the ` Element` interface (for ` ReactNativeElement` ).
207
+ #pragma mark - Methods from the Element interface (for ReactNativeElement).
208
208
209
209
std::tuple<
210
210
/* topWidth: */ int ,
@@ -336,7 +336,7 @@ void NativeDOM::setPointerCapture(
336
336
static_cast <PointerIdentifier>(pointerId), shadowNodeFromValue (rt, shadowNodeValue));
337
337
}
338
338
339
- #pragma mark - Methods from the ` HTMLElement` interface (for ` ReactNativeElement` ).
339
+ #pragma mark - Methods from the HTMLElement interface (for ReactNativeElement).
340
340
341
341
std::tuple<
342
342
/* offsetParent: */ jsi::Value,
@@ -378,7 +378,7 @@ jsi::Value NativeDOM::linkRootNode(
378
378
return valueFromShadowNode (rt, currentRevision);
379
379
}
380
380
381
- #pragma mark - Legacy layout APIs (for ` ReactNativeElement` ).
381
+ #pragma mark - Legacy layout APIs (for ReactNativeElement).
382
382
383
383
void NativeDOM::measure (
384
384
jsi::Runtime& rt,
0 commit comments