Skip to content

Commit 6cf52e3

Browse files
committed
Mark property readonly
1 parent 889fe17 commit 6cf52e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/common/modes/supports/tokenization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ export class ThemeTrieElement {
395395
}
396396
}
397397

398-
export function generateTokensCSSForColorMap(colorMap: Color[]): string {
398+
export function generateTokensCSSForColorMap(colorMap: readonly Color[]): string {
399399
let rules: string[] = [];
400400
for (let i = 1, len = colorMap.length; i < len; i++) {
401401
let color = colorMap[i];

0 commit comments

Comments
 (0)