mirror of
https://github.com/hohn/codeql-javascript-multiflow.git
synced 2025-12-16 12:03:03 +01:00
Add def-use code sample and query
This commit is contained in:
committed by
=Michael Hohn
parent
60ee4295b2
commit
bf9197cb57
30
tests/DefUseSample/DefUseSample.expected
Normal file
30
tests/DefUseSample/DefUseSample.expected
Normal file
@@ -0,0 +1,30 @@
|
||||
WARNING: Unused class GR (/Users/hohn/local/codeql-javascript-multiflow/solutions/DefUseSample.ql:53,7-9)
|
||||
nodes
|
||||
| sample-utility-0.js:5:6:5:39 | value |
|
||||
| sample-utility-0.js:5:14:5:39 | this.ge ... value') |
|
||||
| sample-utility-0.js:5:14:5:39 | this.ge ... value') |
|
||||
| sample-utility-0.js:17:27:17:31 | value |
|
||||
| sample-utility-0.js:18:6:18:7 | ua |
|
||||
| sample-utility-0.js:18:6:18:7 | ua |
|
||||
| sample-utility-1.js:2:9:2:42 | value |
|
||||
| sample-utility-1.js:2:17:2:42 | this.ge ... value') |
|
||||
| sample-utility-1.js:2:17:2:42 | this.ge ... value') |
|
||||
| sample-utility-1.js:14:23:14:27 | value |
|
||||
| sample-utility-1.js:15:2:15:3 | ua |
|
||||
| sample-utility-1.js:15:2:15:3 | ua |
|
||||
edges
|
||||
| sample-utility-0.js:5:6:5:39 | value | sample-utility-0.js:17:27:17:31 | value |
|
||||
| sample-utility-0.js:5:14:5:39 | this.ge ... value') | sample-utility-0.js:5:6:5:39 | value |
|
||||
| sample-utility-0.js:5:14:5:39 | this.ge ... value') | sample-utility-0.js:5:6:5:39 | value |
|
||||
| sample-utility-0.js:17:27:17:31 | value | sample-utility-0.js:17:27:17:31 | value |
|
||||
| sample-utility-0.js:17:27:17:31 | value | sample-utility-0.js:18:6:18:7 | ua |
|
||||
| sample-utility-0.js:17:27:17:31 | value | sample-utility-0.js:18:6:18:7 | ua |
|
||||
| sample-utility-1.js:2:9:2:42 | value | sample-utility-1.js:14:23:14:27 | value |
|
||||
| sample-utility-1.js:2:17:2:42 | this.ge ... value') | sample-utility-1.js:2:9:2:42 | value |
|
||||
| sample-utility-1.js:2:17:2:42 | this.ge ... value') | sample-utility-1.js:2:9:2:42 | value |
|
||||
| sample-utility-1.js:14:23:14:27 | value | sample-utility-1.js:14:23:14:27 | value |
|
||||
| sample-utility-1.js:14:23:14:27 | value | sample-utility-1.js:15:2:15:3 | ua |
|
||||
| sample-utility-1.js:14:23:14:27 | value | sample-utility-1.js:15:2:15:3 | ua |
|
||||
#select
|
||||
| sample-utility-0.js:18:6:18:7 | ua | sample-utility-0.js:5:14:5:39 | this.ge ... value') | sample-utility-0.js:18:6:18:7 | ua | Data flow from $@ to $@. | sample-utility-0.js:5:14:5:39 | this.ge ... value') | this.ge ... value') | sample-utility-0.js:18:6:18:7 | ua | ua |
|
||||
| sample-utility-1.js:15:2:15:3 | ua | sample-utility-1.js:2:17:2:42 | this.ge ... value') | sample-utility-1.js:15:2:15:3 | ua | Data flow from $@ to $@. | sample-utility-1.js:2:17:2:42 | this.ge ... value') | this.ge ... value') | sample-utility-1.js:15:2:15:3 | ua | ua |
|
||||
1
tests/DefUseSample/DefUseSample.qlref
Normal file
1
tests/DefUseSample/DefUseSample.qlref
Normal file
@@ -0,0 +1 @@
|
||||
DefUseSample.ql
|
||||
23
tests/DefUseSample/sample-utility-0.js
Normal file
23
tests/DefUseSample/sample-utility-0.js
Normal file
@@ -0,0 +1,23 @@
|
||||
var SampleUtility = function(){};
|
||||
SampleUtility.prototype = Object.extendsObject(Processor, {
|
||||
|
||||
setUserStatus: function() {
|
||||
var value = this.getParameter('value');
|
||||
|
||||
var ua = new GR('users');
|
||||
ua.query();
|
||||
|
||||
if(!ua.hasNext()){
|
||||
ua.initialize();
|
||||
ua.setValue('status',value);
|
||||
ua.insert();
|
||||
}
|
||||
else {
|
||||
ua.next();
|
||||
ua.setValue('status',value);
|
||||
ua.update();
|
||||
}
|
||||
},
|
||||
|
||||
type: 'SampleUtility'
|
||||
});
|
||||
17
tests/DefUseSample/sample-utility-1.js
Normal file
17
tests/DefUseSample/sample-utility-1.js
Normal file
@@ -0,0 +1,17 @@
|
||||
var SampleUtility = function() {
|
||||
var value = this.getParameter('value');
|
||||
|
||||
var ua = new GR('users');
|
||||
ua.query();
|
||||
|
||||
if(!ua.hasNext()){
|
||||
ua.initialize();
|
||||
ua.setValue('status',value);
|
||||
ua.insert();
|
||||
}
|
||||
else {
|
||||
ua.next();
|
||||
ua.setValue('status',value);
|
||||
ua.update();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user