Skip to content
Merged
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 @@ -3,7 +3,7 @@ import javascript as stdlib
signature class BindingStringReaderSig {
string getBindingString();

stdlib::DbLocation getLocation();
stdlib::Location getLocation();

// Get a dataflow node associated with the binding string, if any.
// Note that not all location from which we can obtain a binding string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private class BindingStringReader extends TBindingString {
)
}

DbLocation getLocation() {
Location getLocation() {
exists(StringLiteral stringLiteral |
this = TBindingStringFromLiteral(stringLiteral) and
result = stringLiteral.getLocation()
Expand Down