{"name":"AMXXPawn","scopeName":"source.amxxpawn","patterns":[{"include":"#line_continuation_character"},{"include":"#literals"},{"include":"#comments"},{"include":"#operators"},{"include":"#preproc"},{"match":"(\\w+)\\:\\s*(\\w+)","captures":{"1":{"patterns":[{"include":"#type"}]},"2":{"patterns":[{"include":"#literals"},{"include":"#variable_name"}]}}},{"match":"(\\w+)\\:\\:(\\w*)","captures":{"1":{"patterns":[{"include":"#type_name"}]},"2":{"patterns":[{"include":"#variable_name"}]}}},{"name":"keyword.control.statement.amxxpawn","match":"\\b(?:if|else|for|while|do|switch|case|default|return|break|goto|continue)\\b"},{"include":"#function-declaration"},{"include":"#other-keywords"},{"include":"#enum"},{"include":"#variable-declaration"},{"include":"#function-call"},{"match":"\\b(\\w+)\\b","captures":{"1":{"patterns":[{"include":"#variable_name"}]}}}],"repository":{"array-indexed-access":{"patterns":[{"match":"\\[([^\\]]+)\\]","captures":{"1":{"patterns":[{"include":"#literals"},{"include":"#other-keywords"},{"include":"#function-call"},{"include":"#variable_name"}]}}}]},"boolean-literal":{"patterns":[{"name":"constant.language.boolean.amxxpawn","match":"\\b(?:true|false)\\b"}]},"comments":{"patterns":[{"name":"comment.amxxpawn","match":"\\/\\/.*"},{"name":"comment.block.amxxpawn","begin":"/\\*","end":"\\*/","captures":{"0":{"name":"comment.amxxpawn"}}}]},"enum":{"begin":"(enum)\\s+(?:(\\w+(?:\\:)?)?(?:\\s*(\\([^\\(]*\\)))?)?","end":"(?\u003c=\\})","patterns":[{"include":"#literals"},{"include":"#comments"},{"include":"#preproc"},{"match":"(\\w+)","captures":{"1":{"patterns":[{"include":"#variable_name"}]}}}],"beginCaptures":{"1":{"patterns":[{"include":"#keywords"}]},"2":{"patterns":[{"include":"#type_name"}]},"3":{"patterns":[{"include":"#literals"}]}}},"function-call":{"match":"\\b([A-Za-z_][A-Za-z0-9_]*)\\s*\\(","captures":{"1":{"name":"entity.name.function.function_call.amxxpawn"}}},"function-declaration":{"patterns":[{"begin":"(?:(stock|public|static)\\s+)?(?:(native|forward)\\s+)?(?:(\\w+)\\:)?\\s*([a-zA-Z_]\\w*)\\(","end":"\\)","patterns":[{"include":"#parameters"},{"include":"#comments"},{"include":"#preproc"}],"beginCaptures":{"1":{"patterns":[{"include":"#keywords"}]},"2":{"patterns":[{"include":"#keywords"}]},"3":{"patterns":[{"include":"#type"}]},"4":{"name":"entity.name.function.amxxpawn"}}}]},"keywords":{"patterns":[{"name":"keyword.visibility.amxxpawn","match":"\\b(public|stock)\\b"},{"name":"keyword.storage_class.amxxpawn","match":"\\b(const|static|native|forward)\\b"},{"name":"keyword.variable_declarator.amxxpawn","match":"\\b(new)\\b"},{"name":"keyword.enum.amxxpawn","match":"\\b(enum)\\b"}]},"line_continuation_character":{"patterns":[{"match":"(\\\\)\\n","captures":{"1":{"name":"constant.character.escape.line-continuation.amxxpawn"}}}]},"literals":{"patterns":[{"include":"#boolean-literal"},{"include":"#null-literal"},{"include":"#numeric-literal"},{"include":"#string-literal"},{"include":"#other-literal"}]},"null-literal":{"patterns":[{"name":"constant.language.amxxpawn","match":"\\bnull\\b"}]},"numeric-literal":{"patterns":[{"name":"constant.numeric.float.amxxpawn","match":"[0-9]+\\.[0-9]+"},{"name":"constant.numeric.amxxpawn","match":"\\b0b[0-1]+\\b"},{"name":"constant.numeric.amxxpawn","match":"\\b0o[0-7]+\\b"},{"name":"constant.numeric.amxxpawn","match":"\\b(0x(?:(?:(?:[0-9a-fA-F]{2}_?)+)|(?:[0-9a-fA-F]+)))\\b"},{"name":"constant.numeric.integer.amxxpawn","match":"\\b((?:\\d|_)+)\\b"},{"name":"invalid.illegal.constant.amxxpawn","match":"\\b\\d+\\w+\\b"}]},"operators":{"patterns":[{"name":"keyword.operator.amxxpawn","match":"%|\u0026|\\*|/(?!\\*|/)|\\+|\\-|~|=|\u003c|\u003e|!|\\||\\?|:|\\^"}]},"other-keywords":{"name":"keyword.amxxpawn","match":"\\b(?:forward|native|public|const|stock|sizeof|tagof|operator|static)\\b"},"other-literal":{"patterns":[{"name":"constant.language.amxxpawn","match":"\\b(?:EOS,cellbits,cellmin,cellmax,charmin,charmax,ucharmax,__Pawn,__LINE__,debug)\\b"}]},"parameter-declaration":{"patterns":[{"match":"(?:(\\w+)\\s*\\:\\s*)?(\\w+|\\.{3})\\s*((?:\\[[^\\]]*\\]\\s*)+)?","captures":{"1":{"patterns":[{"include":"#type"}]},"2":{"patterns":[{"include":"#variable_name"}]},"3":{"patterns":[{"include":"#array-indexed-access"}]}}}]},"parameters":{"patterns":[{"include":"#keywords"},{"include":"#literals"},{"include":"#parameter-declaration"}]},"preproc":{"patterns":[{"name":"meta.include.amxxpawn","match":"(\\#include|\\#tryinclude)\\s*((?:\\\u003c|\").+(?:\\\u003e|\"))","captures":{"1":{"name":"keyword.control.amxxpawn"},"2":{"name":"string.amxxpawn"}}},{"name":"meta.pragma.line-comment.amxxpawn","match":"(\\#pragma)\\s+(.+?(?=//))","captures":{"1":{"name":"keyword.control.pragma.amxxpawn"},"2":{"name":"entity.other.attribute-name.amxxpawn"}}},{"name":"meta.pragma.deprecated.amxxpawn","match":"(\\#pragma)\\s+(deprecated)(.*)","captures":{"1":{"name":"keyword.control.pragma.amxxpawn"},"2":{"name":"entity.other.attribute-name.amxxpawn"},"3":{"name":"string.deprecated.amxxpawn"}}},{"name":"meta.pragma.block-comment.amxxpawn","match":"(\\#pragma)\\s+([A-Za-z _0-9]+)","captures":{"1":{"name":"keyword.control.pragma.amxxpawn"},"2":{"name":"entity.other.attribute-name.amxxpawn"}}},{"name":"meta.define.amxxpawn","match":"(\\#define)\\s*(\\w*)","captures":{"1":{"name":"keyword.control.define.amxxpawn"},"2":{"name":"meta.preprocessor.macro.amxxpawn"}}},{"name":"meta.undef.amxxpawn","match":"(\\#undef)\\s*(\\w*)","captures":{"1":{"name":"keyword.control.undef.amxxpawn"},"2":{"name":"meta.preprocessor.macro.amxxpawn"}}},{"name":"meta.undef.amxxpawn","match":"(#\\b(?:warning|error)\\b)\\s*(.+?)(?=/(?:/|\\*))","captures":{"1":{"name":"keyword.control.misc.amxxpawn"},"2":{"name":"string.warning.amxxpawn"}}},{"name":"meta.undef.amxxpawn","match":"(#\\b(?:warning|error)\\b)\\s*(.*)","captures":{"1":{"name":"keyword.control.misc.amxxpawn"},"2":{"name":"string.warning.amxxpawn"}}},{"name":"keyword.control.misc.amxxpawn","match":"#\\b(if|else|endif|emit|deprecated|undef|endinput|endscript|assert|define|file)\\b\\s*"},{"match":"(defined)\\s+([A-Za-z_]\\w*)","captures":{"1":{"name":"meta.preprocessor.conditional.amxxpawn"},"2":{"name":"meta.preprocessor.macro.amxxpawn"}}}]},"string-literal":{"patterns":[{"name":"string.quoted.double.amxxpawn","begin":"\"","end":"(\")|((?:[^\\\\\\n])$)","patterns":[{"include":"#string_escaped_char"},{"include":"#string_format_char"},{"include":"#string_placeholder"},{"include":"#line_continuation_character"}],"beginCaptures":{"0":{"name":"punctuation.definition.string.begin.amxxpawn"}},"endCaptures":{"1":{"name":"punctuation.definition.string.end.amxxpawn"},"2":{"name":"invalid.illegal.newline.amxxpawn"}}},{"name":"string.quoted.single.c","begin":"'","end":"(\\')|((?:[^\\\\\\n])$)","patterns":[{"include":"#string_escaped_char"},{"include":"#string_format_char"},{"include":"#string_placeholder"},{"include":"#line_continuation_character"}],"beginCaptures":{"0":{"name":"punctuation.definition.string.begin.amxxpawn"}},"endCaptures":{"1":{"name":"punctuation.definition.string.end.amxxpawn"},"2":{"name":"invalid.illegal.newline.amxxpawn"}}}]},"string_escaped_char":{"patterns":[{"name":"constant.character.escape.amxxpawn","match":"\\\\(?:[abefnrt'\"\\\\]|(?:x[a-zA-Z0-9]{0,2}|\\d+);?)"},{"name":"invalid.illegal.unknown-escape.amxxpawn","match":"\\\\."}]},"string_format_char":{"name":"constant.character.format.amxxpawn","match":"%(?:a|A|b|B|c|C|d|D|e|F|g|G|h|H|I|j|m|M|n|i|p|r|R|S|t|T|u|U|V|u|w|W|x|X|y|Y|z|Z|f|L|N|s|T|t|%|(?:\\d+)?\\.?\\d*(?:b|d|i|u|f|s|X|x))"},"type":{"patterns":[{"match":"(_|bool|any|Float)|(\\w+)","captures":{"1":{"name":"storage.type.built-in.primitive.amxxpawn"},"2":{"patterns":[{"include":"#type_name"}]}}}]},"type_name":{"patterns":[{"name":"constant.numeric.integer.amxxpawn","match":"\\b\\d\\b"},{"name":"support.type.core.amxxpawn","match":"[a-zA-Z_]\\w*"},{"match":"([0-9])(\\w*)","captures":{"1":{"name":"invalid.illegal.constant.amxxpawn"},"2":{"name":"support.type.core.amxxpawn"}}}]},"variable-declaration":{"patterns":[{"match":"(?:(stock|public)\\s+)?((?:(?:const|static)\\s+)*)(new)\\s+(?:(\\w+)\\:\\s*)?(\\w+)(\\s*(?:\\[[^\\]]*\\]\\s*)*)","captures":{"1":{"patterns":[{"include":"#keywords"}]},"2":{"patterns":[{"include":"#keywords"}]},"3":{"patterns":[{"include":"#keywords"}]},"4":{"patterns":[{"include":"#type"}]},"5":{"patterns":[{"include":"#variable_name"}]},"6":{"patterns":[{"include":"#array-indexed-access"}]}}}]},"variable_name":{"patterns":[{"name":"constant.numeric.integer.amxxpawn","match":"\\b\\d\\b"},{"name":"variable.amxxpawn","match":"[a-zA-Z_]\\w*"},{"match":"([0-9])(\\w*)","captures":{"1":{"name":"invalid.illegal.constant.amxxpawn"},"2":{"name":"variable.amxxpawn"}}}]}}}