@@ -39,10 +39,13 @@ export interface IStackTraceLookup {
3939 */
4040export const STACK_TRACE_DECORATION =
4141 vscode . window . createTextEditorDecorationType ( {
42- backgroundColor : 'rgba(163, 149, 0, 0.4)' ,
43- gutterIconPath : GetExtensionPath (
44- 'extension/images/dark/debug-stackframe.svg'
45- ) ,
42+ isWholeLine : true ,
43+ dark : {
44+ backgroundColor : 'rgba(163, 149, 0, 0.4)' ,
45+ gutterIconPath : GetExtensionPath (
46+ 'extension/images/dark/debug-stackframe.svg'
47+ ) ,
48+ } ,
4649 light : {
4750 backgroundColor : 'rgba(255, 235, 0, 0.2)' ,
4851 gutterIconPath : GetExtensionPath (
@@ -58,7 +61,10 @@ export const STACK_TRACE_DECORATION =
5861 */
5962export const SYNTAX_ERROR_DECORATION =
6063 vscode . window . createTextEditorDecorationType ( {
61- backgroundColor : 'rgba(163, 0, 0, 0.4)' ,
64+ isWholeLine : true ,
65+ dark : {
66+ backgroundColor : 'rgba(163, 0, 0, 0.4)' ,
67+ } ,
6268 light : {
6369 backgroundColor : 'rgba(255, 0, 0, 0.2)' ,
6470 } ,
@@ -71,13 +77,17 @@ export const SYNTAX_ERROR_DECORATION =
7177 */
7278export const CODE_COVERAGE_DECORATIONS = {
7379 NOT_EXECUTED : vscode . window . createTextEditorDecorationType ( {
74- backgroundColor : 'rgba(163, 0, 0, 0.4)' ,
80+ dark : {
81+ backgroundColor : 'rgba(163, 0, 0, 0.4)' ,
82+ } ,
7583 light : {
7684 backgroundColor : 'rgba(255, 0, 0, 0.2)' ,
7785 } ,
7886 } ) ,
7987 EXECUTED : vscode . window . createTextEditorDecorationType ( {
80- backgroundColor : 'rgba(0, 122, 30, 0.4)' ,
88+ dark : {
89+ backgroundColor : 'rgba(0, 122, 30, 0.4)' ,
90+ } ,
8191 light : {
8292 backgroundColor : 'rgba(255, 235, 0, 0.2)' ,
8393 } ,
0 commit comments