@@ -38,75 +38,86 @@ public class Pointcuts {
38
38
*/
39
39
@ Pointcut ("within(com.github._1c_syntax.bsl.languageserver..*)" )
40
40
public void isBSLLanguageServerScope () {
41
+ // no-op
41
42
}
42
43
43
44
/**
44
45
* Это обращение к классу {@link LanguageServerConfiguration}.
45
46
*/
46
47
@ Pointcut ("within(com.github._1c_syntax.bsl.languageserver.configuration.LanguageServerConfiguration)" )
47
48
public void isLanguageServerConfiguration () {
49
+ // no-op
48
50
}
49
51
50
52
/**
51
53
* Это обращение к классу {@link DocumentContext}.
52
54
*/
53
55
@ Pointcut ("within(com.github._1c_syntax.bsl.languageserver.context.DocumentContext)" )
54
56
public void isDocumentContext () {
57
+ // no-op
55
58
}
56
59
57
60
/**
58
61
* Это обращение к реализации {@link LanguageServer}.
59
62
*/
60
63
@ Pointcut ("within(org.eclipse.lsp4j.services.LanguageServer+)" )
61
64
public void isLanguageServer () {
65
+ // no-op
62
66
}
63
67
64
68
/**
65
69
* Это обращение к классу {@link ServerContext}.
66
70
*/
67
71
@ Pointcut ("within(com.github._1c_syntax.bsl.languageserver.context.ServerContext)" )
68
72
public void isServerContext () {
73
+ // no-op
69
74
}
70
75
71
76
/**
72
77
* Это обращение к реализации интерфейса {@link BSLDiagnostic}.
73
78
*/
74
79
@ Pointcut ("within(com.github._1c_syntax.bsl.languageserver.diagnostics.BSLDiagnostic+)" )
75
80
public void isBSLDiagnostic () {
81
+ // no-op
76
82
}
77
83
78
84
/**
79
85
* Это вызов метода rebuild.
80
86
*/
81
87
@ Pointcut ("isBSLLanguageServerScope() && execution(* rebuild(..))" )
82
88
public void isRebuildCall () {
89
+ // no-op
83
90
}
84
91
85
92
/**
86
93
* Это вызов метода update.
87
94
*/
88
95
@ Pointcut ("isBSLLanguageServerScope() && execution(* update(..))" )
89
96
public void isUpdateCall () {
97
+ // no-op
90
98
}
91
99
92
100
/**
93
101
* Это вызов метода reset.
94
102
*/
95
103
@ Pointcut ("isBSLLanguageServerScope() && execution(* reset(..))" )
96
104
public void isResetCall () {
105
+ // no-op
97
106
}
98
107
99
108
/**
100
109
* Это вызов метода getDiagnostics.
101
110
*/
102
111
@ Pointcut ("isBSLLanguageServerScope() && execution(* getDiagnostics(..))" )
103
112
public void isGetDiagnosticsCall () {
113
+ // no-op
104
114
}
105
115
106
116
/**
107
117
* Это вызов метода initialize.
108
118
*/
109
119
@ Pointcut ("isBSLLanguageServerScope() && execution(* initialize(..))" )
110
120
public void isInitializeCall () {
121
+ // no-op
111
122
}
112
123
}
0 commit comments