We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c9203 commit 8aaa52cCopy full SHA for 8aaa52c
src/main/java/nextflow/lsp/services/script/ScriptSemanticTokensProvider.java
@@ -194,11 +194,8 @@ protected void visitOutputBody(Statement body) {
194
if( call == null )
195
return;
196
197
- var code = asDslBlock(call, 1);
198
- if( code != null ) {
199
- tok.append(call.getMethod(), SemanticTokenTypes.Parameter);
200
- tok.visit(code);
201
- }
+ tok.append(call.getMethod(), SemanticTokenTypes.Function);
+ tok.visit(call.getArguments());
202
});
203
}
204
0 commit comments