Преглед на файлове

Assume identifiers starting with upper case are type names

Alex Dima преди 7 години
родител
ревизия
159af65cc5
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/typescript/typescript.ts

+ 2 - 2
src/typescript/typescript.ts

@@ -120,8 +120,8 @@ export const language = {
 					'@default': 'identifier'
 				}
 			}],
-			// [/[A-Z][\w\$]*/, 'type.identifier' ],  // to show class names nicely
-			[/[A-Z][\w\$]*/, 'identifier'],
+			[/[A-Z][\w\$]*/, 'type.identifier' ],  // to show class names nicely
+			// [/[A-Z][\w\$]*/, 'identifier'],
 
 			// whitespace
 			{ include: '@whitespace' },