File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
javascript/ql/lib/semmle/javascript Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,13 +64,13 @@ module Routing {
64
64
* that does not correspond to the route that was just installed.
65
65
* Typically this occurs when the route setup method is chainable and returns the router itself.
66
66
*/
67
- Node getRouteSetupNode ( DataFlow:: CallNode call ) { result = MkRouteSetup ( call ) }
67
+ Node getRouteSetupNode ( DataFlow:: Node call ) { result = MkRouteSetup ( call ) }
68
68
69
69
/**
70
70
* A node in a routing tree modelling the composition of middleware functions and route handlers.
71
71
*
72
72
* More precisely, this is a node in a graph representing a set of possible routing trees, as the
73
- * concrete shape of the routing tree may be depend on branching control flow.
73
+ * concrete shape of the routing tree may be depend on branching control flow.
74
74
*
75
75
* Each node represents a function that can receive an incoming request, though not necessarily
76
76
* a function with an explicit body in the source code.
@@ -410,7 +410,7 @@ module Routing {
410
410
*/
411
411
abstract class UseSite extends Range {
412
412
/**
413
- * Gets a data flow ndoe that flows to this use-site in one step.
413
+ * Gets a data flow node that flows to this use-site in one step.
414
414
*/
415
415
DataFlow:: Node getSource ( ) {
416
416
result = getALocalSource ( )
You can’t perform that action at this time.
0 commit comments