Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -940,5 +940,5 @@ class ControlTypeInHandlerModel extends ModelInput::TypeModel {
* Prevents model pruning for `ControlType`types
*/
bindingset[type]
override predicate isTypeUsed(string type) { any() }
override[local?] predicate isTypeUsed(string type) { any() }
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class XSJSDollarTypeModel extends ModelInput::TypeModel {
/**
* Prevents model pruning for type `XsjsDollar`
*/
override predicate isTypeUsed(string type) { type = "XsjsDollar" }
override[local?] predicate isTypeUsed(string type) { type = "XsjsDollar" }
}

/**
Expand Down