We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2d768 commit d036e81Copy full SHA for d036e81
extensions/ql-vscode/src/model-editor/consistency-check.ts
@@ -42,7 +42,10 @@ function checkMethodConsistency(
42
modeledMethods: readonly ModeledMethod[],
43
notifier: Notifier,
44
) {
45
- const expectSupported = modeledMethods.some((m) => m.type !== "none");
+ // Type models are currently not shown as `supported` since they do not give any model information.
46
+ const expectSupported = modeledMethods.some(
47
+ (m) => m.type !== "none" && m.type !== "type",
48
+ );
49
50
if (method.supported !== expectSupported) {
51
notifier.inconsistentSupported(
0 commit comments