Skip to content

Commit

Permalink
Update Haskell scope support facet stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
wenkokke committed Jan 22, 2024
1 parent ae748a6 commit 6eab50f
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions packages/common/src/scopeSupportFacets/haskell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ScopeSupportFacetLevel,
} from "./scopeSupportFacets.types";

const { supported, notApplicable } = ScopeSupportFacetLevel;
const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel;

export const haskellScopeSupport: LanguageScopeSupportFacetMap = {
command: notApplicable,
Expand All @@ -16,68 +16,68 @@ export const haskellScopeSupport: LanguageScopeSupportFacetMap = {
endTag: notApplicable,
attribute: notApplicable,

list: notApplicable,
map: notApplicable,
ifStatement: notApplicable,
regularExpression: notApplicable,
switchStatementSubject: notApplicable,
fieldAccess: notApplicable,

statement: notApplicable,
"statement.iteration.document": notApplicable,
"statement.iteration.block": notApplicable,

class: notApplicable,
className: notApplicable,
namedFunction: notApplicable,
"namedFunction.method": notApplicable,
anonymousFunction: notApplicable,
functionName: notApplicable,

functionCall: notApplicable,
"functionCall.constructor": notApplicable,
functionCallee: notApplicable,
"functionCallee.constructor": notApplicable,

"argument.actual": notApplicable,
"argument.actual.iteration": notApplicable,
"argument.formal": notApplicable,
"argument.formal.iteration": notApplicable,

"comment.line": notApplicable,
"comment.block": notApplicable,

"string.singleLine": notApplicable,
list: unsupported,
map: unsupported,
ifStatement: unsupported,
regularExpression: unsupported,
switchStatementSubject: unsupported,
fieldAccess: unsupported,

statement: unsupported,
"statement.iteration.document": unsupported,
"statement.iteration.block": unsupported,

class: unsupported,
className: unsupported,
namedFunction: supported,
"namedFunction.method": unsupported,
anonymousFunction: unsupported,
functionName: supported,

functionCall: unsupported,
"functionCall.constructor": unsupported,
functionCallee: unsupported,
"functionCallee.constructor": unsupported,

"argument.actual": unsupported,
"argument.actual.iteration": unsupported,
"argument.formal": unsupported,
"argument.formal.iteration": unsupported,

"comment.line": unsupported,
"comment.block": unsupported,

"string.singleLine": unsupported,
"string.multiLine": notApplicable,

"branch.if": notApplicable,
"branch.if.iteration": notApplicable,
"branch.if": unsupported,
"branch.if.iteration": unsupported,
"branch.try": notApplicable,
"branch.switchCase": notApplicable,
"branch.switchCase.iteration": notApplicable,
"branch.ternary": notApplicable,

"condition.if": notApplicable,
"condition.if": unsupported,
"condition.while": notApplicable,
"condition.doWhile": notApplicable,
"condition.for": notApplicable,
"condition.ternary": notApplicable,
"condition.switchCase": notApplicable,

"name.assignment": notApplicable,
"name.assignment.pattern": notApplicable,
"name.assignment": unsupported,
"name.assignment.pattern": unsupported,
"name.foreach": notApplicable,
"name.function": notApplicable,
"name.class": notApplicable,
"name.field": notApplicable,
"name.function": supported,
"name.class": unsupported,
"name.field": unsupported,

"key.attribute": notApplicable,
"key.mapPair": notApplicable,
"key.mapPair.iteration": notApplicable,

"value.assignment": notApplicable,
"value.mapPair": notApplicable,
"value.mapPair.iteration": notApplicable,
"value.assignment": unsupported,
"value.mapPair": unsupported,
"value.mapPair.iteration": unsupported,
"value.attribute": notApplicable,
"value.foreach": notApplicable,
"value.return": notApplicable,
Expand Down

0 comments on commit 6eab50f

Please sign in to comment.