Skip to content

Commit 28b78dc

Browse files
committed
Renaming of abstract predicate
1 parent 3fde2af commit 28b78dc

File tree

2 files changed

+5
-5
lines changed
  • javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5

2 files changed

+5
-5
lines changed

javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5/UI5.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@ class PropertyMetadata extends ObjectLiteralNode {
14401440

14411441
module EventBus {
14421442
abstract class EventBusPublishCall extends CallNode {
1443-
abstract EventBusSubscribeCall getMatchingSubscribeCall();
1443+
abstract EventBusSubscribeCall getAMatchingSubscribeCall();
14441444

14451445
abstract DataFlow::Node getPublishedData();
14461446

@@ -1467,7 +1467,7 @@ module EventBus {
14671467
this = publishMethod.getACall()
14681468
}
14691469

1470-
override GlobalEventBusSubscribeCall getMatchingSubscribeCall() {
1470+
override GlobalEventBusSubscribeCall getAMatchingSubscribeCall() {
14711471
result.getChannelName() = this.getChannelName() and
14721472
result.getMessageType() = this.getMessageType()
14731473
}
@@ -1490,7 +1490,7 @@ module EventBus {
14901490
this = publishMethod.getACall()
14911491
}
14921492

1493-
override SapUICoreEventBusSubscribeCall getMatchingSubscribeCall() {
1493+
override SapUICoreEventBusSubscribeCall getAMatchingSubscribeCall() {
14941494
result.getChannelName() = this.getChannelName() and
14951495
result.getMessageType() = this.getMessageType()
14961496
}
@@ -1514,7 +1514,7 @@ module EventBus {
15141514
this = controller.getOwnerComponentRef().getAMemberCall("publish")
15151515
}
15161516

1517-
override ComponentEventBusSubscribeCall getMatchingSubscribeCall() {
1517+
override ComponentEventBusSubscribeCall getAMatchingSubscribeCall() {
15181518
result.getChannelName() = this.getChannelName() and
15191519
result.getMessageType() = this.getMessageType() and
15201520
result.getComponent() = this.getComponent()

javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5/dataflow/FlowSteps.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class PublishedEventToEventSubscribedEventData extends DataFlow::SharedFlowStep
372372
exists(
373373
EventBus::EventBusPublishCall publishCall, EventBus::EventBusSubscribeCall subscribeCall
374374
|
375-
publishCall.getMatchingSubscribeCall() = subscribeCall
375+
publishCall.getAMatchingSubscribeCall() = subscribeCall
376376
|
377377
start = publishCall.getPublishedData() and
378378
end = subscribeCall.getSubscriptionData()

0 commit comments

Comments
 (0)