Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conflicting language around type annotations in strict syntax documentation #5900

Open
sersorrel opened this issue Mar 19, 2025 · 1 comment
Labels

Comments

@sersorrel
Copy link

The new documentation about strict syntax states that when you use def, you must not include a type annotation:

In the strict syntax, variables must be declared with `def` and must not specify a type:

However, a later example includes a type annotation, and even states they they are preferred over as-casts:

In the strict syntax, only hard casts are supported. However, hard casts are discouraged because they can cause unexpected behavior if used improperly. Groovy-style type annotations should be used instead:
```groovy
def Map map = readJson(json)
```

There is a note that type annotations will be addressed properly in the future:

Because type annotations are useful for providing type checking at runtime, the language server will not report errors for Groovy-style type annotations at this time. Type annotations will be addressed in a future version of the Nextflow language specification.

but this only mentions that the language server will not produce an error – should this instead say that Nextflow as a whole will accept type annotations at the moment? (but, for example, that they are discouraged and may cause an error in the future, if that is the case?)

@bentsherman
Copy link
Member

This page used to be only about the language server, but now that the strict syntax is in Nextflow, yes it should talk about Nextflow in general and not just the language server

Both will accept Groovy-style type annotations for now. Once we add type annotations to the strict syntax, we'll start reporting warnings (and eventually errors) for the old way

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants