Skip to content

Commit 622c8ec

Browse files
committed
WIP: fix func-tests
1 parent 4d7fa57 commit 622c8ec

8 files changed

+36
-0
lines changed

test/testdata/schema/ghc910/default-config.golden.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@
150150
},
151151
"globalOn": false
152152
},
153+
"signatureHelp": {
154+
"globalOn": true
155+
},
153156
"stan": {
154157
"globalOn": false
155158
}

test/testdata/schema/ghc910/vscode-extension-schema.golden.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,6 +1037,12 @@
10371037
"scope": "resource",
10381038
"type": "boolean"
10391039
},
1040+
"haskell.plugin.signatureHelp.globalOn": {
1041+
"default": true,
1042+
"description": "Enables signatureHelp plugin",
1043+
"scope": "resource",
1044+
"type": "boolean"
1045+
},
10401046
"haskell.plugin.stan.globalOn": {
10411047
"default": false,
10421048
"description": "Enables stan plugin",

test/testdata/schema/ghc912/default-config.golden.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@
149149
"variableToken": "variable"
150150
},
151151
"globalOn": false
152+
},
153+
"signatureHelp": {
154+
"globalOn": true
152155
}
153156
},
154157
"sessionLoading": "singleComponent"

test/testdata/schema/ghc912/vscode-extension-schema.golden.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,5 +1036,11 @@
10361036
"description": "Enables semanticTokens plugin",
10371037
"scope": "resource",
10381038
"type": "boolean"
1039+
},
1040+
"haskell.plugin.signatureHelp.globalOn": {
1041+
"default": true,
1042+
"description": "Enables signatureHelp plugin",
1043+
"scope": "resource",
1044+
"type": "boolean"
10391045
}
10401046
}

test/testdata/schema/ghc96/default-config.golden.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@
153153
},
154154
"globalOn": false
155155
},
156+
"signatureHelp": {
157+
"globalOn": true
158+
},
156159
"splice": {
157160
"globalOn": true
158161
},

test/testdata/schema/ghc96/vscode-extension-schema.golden.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,6 +1043,12 @@
10431043
"scope": "resource",
10441044
"type": "boolean"
10451045
},
1046+
"haskell.plugin.signatureHelp.globalOn": {
1047+
"default": true,
1048+
"description": "Enables signatureHelp plugin",
1049+
"scope": "resource",
1050+
"type": "boolean"
1051+
},
10461052
"haskell.plugin.splice.globalOn": {
10471053
"default": true,
10481054
"description": "Enables splice plugin",

test/testdata/schema/ghc98/default-config.golden.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@
153153
},
154154
"globalOn": false
155155
},
156+
"signatureHelp": {
157+
"globalOn": true
158+
},
156159
"splice": {
157160
"globalOn": true
158161
},

test/testdata/schema/ghc98/vscode-extension-schema.golden.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,6 +1043,12 @@
10431043
"scope": "resource",
10441044
"type": "boolean"
10451045
},
1046+
"haskell.plugin.signatureHelp.globalOn": {
1047+
"default": true,
1048+
"description": "Enables signatureHelp plugin",
1049+
"scope": "resource",
1050+
"type": "boolean"
1051+
},
10461052
"haskell.plugin.splice.globalOn": {
10471053
"default": true,
10481054
"description": "Enables splice plugin",

0 commit comments

Comments
 (0)