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
With Class "http://localhost:5678/api#Installation" {
Expect Operation "http://localhost:5678/api#InstallOperation" {
Invoke {
Expect Status 201
Expect Header Location [entrypoint]
Follow [entry]
}
}
}
In the snippet above the variable entry used does not match the entrypoint being "declared". It should be validated and an error shown guarding against such errors
The text was updated successfully, but these errors were encountered:
@mchlrch instead of using a validator, is it possible to declaratively construct language so that it's only possible to reference variables within a block and no other variables are suggested?
For this case, it's best to adjust the scoping. The linker as well as proposals (code-assist) respect the scoping, so only elements in scope can be referenced.
I did this in the mapping-dsl as well, to scope the columns of a table that are eligible for the mapping
In the snippet above the variable
entry
used does not match theentrypoint
being "declared". It should be validated and an error shown guarding against such errorsThe text was updated successfully, but these errors were encountered: