You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---------
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Copy file name to clipboardexpand all lines: docs/updating-syntax.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,17 @@ This page explains how to update Nextflow scripts and config files to adhere to
8
8
If you are still using DSL1, see {ref}`dsl1-page` to learn how to migrate your Nextflow pipelines to DSL2 before consulting this guide.
9
9
:::
10
10
11
+
(strict-syntax)=
12
+
11
13
## Preparing for strict syntax
12
14
13
-
The strict syntax is a subset of DSL2. While DSL2 allows any Groovy syntax, the strict syntax allows only a subset of Groovy syntax for Nextflow scripts and config files. This new specification enables more specific error reporting, ensures more consistent code, and will allow the Nextflow language to evolve independently of Groovy.
15
+
:::{versionadded} 25.02.0-edge
16
+
The strict syntax can be enabled in Nextflow by setting `NXF_SYNTAX_PARSER=v2`.
17
+
:::
14
18
15
-
The strict syntax is currently only enforced by the Nextflow language server, which is provided as part of the Nextflow {ref}`vscode-page`. However, the strict syntax will be gradually adopted by the Nextflow CLI in future releases and will eventually be the only way to write Nextflow code.
19
+
The strict syntax is a subset of DSL2. While DSL2 allows any Groovy syntax, the strict syntax allows only a subset of Groovy syntax for Nextflow scripts and config files. This new specification enables more specific error reporting, ensures more consistent code, and will allow the Nextflow language to evolve independently of Groovy.
16
20
17
-
New language features will be implemented as part of the strict syntax, and not the current DSL2 parser, with few exceptions. Therefore, it is important to prepare for the strict syntax in order to use new language features in the future.
21
+
The strict syntax will eventually become the only way to write Nextflow code, and new language features will be implemented only in the strict syntax, with few exceptions. Therefore, it is important to prepare for the strict syntax in order to maintain compatibility with future versions of Nextflow and be able to use new language features.
18
22
19
23
This section describes the key differences between the DSL2 and the strict syntax. In general, the amount of changes that are required depends on the amount of custom Groovy code in your scripts and config files.
Copy file name to clipboardexpand all lines: docs/vscode.md
+2
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,8 @@ The following settings are available:
102
102
`nextflow.paranoidWarnings`
103
103
: Enable additional warnings for future deprecations, potential problems, and other discouraged patterns.
104
104
105
+
(vscode-language-server)=
106
+
105
107
## Language server
106
108
107
109
Most of the functionality of the VS Code extension is provided by the [Nextflow language server](https://github.com/nextflow-io/language-server), which implements the [Language Server Protocol (LSP)](https://microsoft.github.io/language-server-protocol/) for Nextflow scripts and config files.
0 commit comments