From aa008263a570b79dce0ace06b17e26984bac1c23 Mon Sep 17 00:00:00 2001 From: thennothinghappened <35243139+thennothinghappened@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:54:39 +1100 Subject: [PATCH] fix(gml) remove useless `global` special `.` case --- src/languages/gml.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/languages/gml.js b/src/languages/gml.js index 7a08977e4e..ad0721b6de 100644 --- a/src/languages/gml.js +++ b/src/languages/gml.js @@ -1227,20 +1227,9 @@ export default function(hljs) { }; /** - * Dot accessor usage with a special highlighting case for `global`. + * Dot accessor usage. */ const PROP_ACCESS = [ - { - match: [ - "global", - DOT_ACCESSOR_RE, - VALID_IDENTIFIER_RE - ], - scope: { - 1: "literal", - 3: "property" - } - }, { match: [ DOT_ACCESSOR_RE,