File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
javascript/frameworks/cap/lib/advanced_security/javascript/frameworks/cap Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,13 @@ class CdsServeCall extends DataFlow::CallNode {
6060
6161 Expr getServiceRepresentation ( ) { result = serviceRepresentation }
6262
63- ServiceInstance getServiceDefinition ( ) {
63+ UserDefinedApplicationService getServiceDefinition ( ) {
6464 /* 1. The argument to cds.serve is "all" */
6565 this .getServiceRepresentation ( ) .getStringValue ( ) = "all" and
6666 result = any ( UserDefinedApplicationService service )
6767 or
6868 /* 2. The argument to cds.serve is a name of the service */
69- result .( UserDefinedApplicationService ) .getUnqualifiedName ( ) =
70- this .getServiceRepresentation ( ) .getStringValue ( )
69+ result .getUnqualifiedName ( ) = this .getServiceRepresentation ( ) .getStringValue ( )
7170 or
7271 /* 3. The argument to cds.serve is a name by which the service is required */
7372 exists ( RequiredService requiredService |
You can’t perform that action at this time.
0 commit comments