@@ -33,30 +33,30 @@ private string getBindingString() {
33
33
private module BindingStringParser =
34
34
MakeBindingStringParser:: BindingStringParser< getBindingString / 0 > ;
35
35
36
- class BindingValue = BindingStringParser:: Binding ;
36
+ private class BindingValue = BindingStringParser:: Binding ;
37
37
38
38
class BindingString extends string {
39
39
bindingset [ this ]
40
40
BindingString ( ) { this = getBindingString ( ) }
41
41
}
42
42
43
- class BindPropertyMethodCallNode extends DataFlow:: MethodCallNode {
43
+ private class BindPropertyMethodCallNode extends DataFlow:: MethodCallNode {
44
44
BindPropertyMethodCallNode ( ) { this .getMethodName ( ) = "bindProperty" }
45
45
}
46
46
47
- class BindElementMethodCallNode extends DataFlow:: MethodCallNode {
47
+ private class BindElementMethodCallNode extends DataFlow:: MethodCallNode {
48
48
BindElementMethodCallNode ( ) { this .getMethodName ( ) = "bindElement" }
49
49
}
50
50
51
- class BindValueMethodCallNode extends DataFlow:: MethodCallNode {
51
+ private class BindValueMethodCallNode extends DataFlow:: MethodCallNode {
52
52
BindValueMethodCallNode ( ) { this .getMethodName ( ) = "bindValue" }
53
53
}
54
54
55
- newtype TLateJavaScriptPropertyBindingMethodCall =
55
+ private newtype TLateJavaScriptPropertyBindingMethodCall =
56
56
TBindProperty ( BindPropertyMethodCallNode bindProperty ) or
57
57
TBindValue ( BindValueMethodCallNode bindValue )
58
58
59
- class LateJavaScriptPropertyBindingMethodCall extends TLateJavaScriptPropertyBindingMethodCall {
59
+ private class LateJavaScriptPropertyBindingMethodCall extends TLateJavaScriptPropertyBindingMethodCall {
60
60
string toString ( ) {
61
61
exists ( BindPropertyMethodCallNode bindProperty |
62
62
this = TBindProperty ( bindProperty ) and
@@ -102,7 +102,7 @@ class LateJavaScriptPropertyBindingMethodCall extends TLateJavaScriptPropertyBin
102
102
}
103
103
}
104
104
105
- newtype TBinding =
105
+ private newtype TBinding =
106
106
/**
107
107
* Any XML attribute that is assigned a binding string.
108
108
* That is a string enclosed by curly braces.
0 commit comments