diff --git a/demo/kitchen-sink/docs/jade.jade b/demo/kitchen-sink/docs/jade.jade
index 1198c416..97f4e22e 100644
--- a/demo/kitchen-sink/docs/jade.jade
+++ b/demo/kitchen-sink/docs/jade.jade
@@ -1,17 +1,158 @@
-doctype 5
-html(lang="en")
- head
- title= pageTitle
- script(type='text/javascript')
- if (foo) {
- bar()
- }
- body
- h1 Jade - node template engine
- #container
- if youAreUsingJade
- p You are #{awesome}
- else
- p Get on it!
+!!!doctype
+!!!5
- mixin dialog-title-desc(title, desc)
\ No newline at end of file
+- var methodSection, constructorSection, propertySection, eventSection;
+
+-function renameMemberTitle(title, count)
+ if title.indexOf("ethods") >= 0
+ span Functions (#{count})
+ else if title.indexOf("ropert") >= 0
+ span Properties (#{count})
+ else
+ span.AS.AS.AS #{title} (#{count})
+
+mixin article(obj, parents)
+ if typeof obj === 'string'
+ obj = list[obj]
+
+ title = obj.id + (obj.type ? ' (' + obj.type + ')' : '')
+ article.article(id=obj.path, data-title=title)
+ if obj.type === 'section' || obj.type === 'namespace' || obj.type === 'class' || obj.type === 'mixin'
+
+ if obj.stability
+ mixin markdown
+
+ span.label.deprecated
+ | Deprecated
+ if obj.deprecated.from
+ | (since #{obj.deprecated.from})
+ if obj.deprecated.off
+ | and will be removed on #{obj.deprecated.off}
+ if obj.alias_of
+ li
+ span.label.alias.single
+ | Aliased as:
+ != link(obj.alias_of)
+ div.sideToggler
+
+ div(id='ellipsis_#{obj.id}', class='ellipsis_description')
+ mixin markdown(obj.short_description)
+
+ h3(id='#{obj.id}', class='methodToggle methodClicker inactive')
+
+ div.description
+
+ mixin markdown(obj.description)
+
+ if obj.bound && ~obj.bound.indexOf('#')
+ p.note.methodized
+ | This method can be called either as an
+ != link(obj.bound, ['link-short'], 'instance method')
+ | or as a generic method. If calling as generic, pass the instance in as the first argument.
+ else if obj.bound && !~obj.bound.indexOf('#')
+ p.note.functionalized
+ | This method can be called either as an instance method or as a
+ != link(obj.bound, ['link-short'], 'generic method')
+ |. If calling as generic, pass the instance in as the first argument.
+
+ if obj.arguments
+ h4 Arguments
+ != argumentTable(obj.arguments, ["argument-list", "table", "table-striped", "table-bordered"])
+
+
+ if obj.returns
+ h4 Returns
+ != returnTable(obj.returns, ["return-list", "table", "table-striped", "table-bordered"])
+
+ //- children
+ for child in obj.children.filter(function(x){return x.type === 'section'})
+ mixin article(child, parents.concat(obj))
+ for child in obj.children.filter(function(x){return x.type === 'utility'})
+ mixin article(child, parents.concat(obj))
+
+ for child in obj.children.filter(function(x){return x.type === 'constructor'})
+ - if (!constructorSection)
+ - constructorSection = true
+ h3.sectionHeader Constructors
+ mixin article(child, parents.concat(obj))
+
+ for child in obj.children.filter(function(x){return x.type === 'namespace' || x.type === 'class' || x.type === 'mixin'})
+ mixin article(child, parents.concat(obj))
+
+ for child in obj.children.filter(function(x){return x.type === 'event'})
+ - if (!eventSection)
+ - eventSection = true
+ h3.sectionHeader Events
+ mixin article(child, parents.concat(obj), 'event')
+
+ for child in obj.children.filter(function(x){return x.type === 'class method'})
+ - if (!methodSection)
+ - methodSection = true
+ h3.sectionHeader Methods
+ mixin article(child, parents.concat(obj))
+
+ for child in obj.children.filter(function(x){return x.type === 'class property'})
+ - if (!propertySection)
+ - propertySection = true
+ h3.sectionHeader Properties
+ mixin article(child, parents.concat(obj))
+
+ for child in obj.children.filter(function(x){return x.type === 'instance method'})
+ mixin article(child, parents.concat(obj))
+ for child in obj.children.filter(function(x){return x.type === 'instance property'})
+ mixin article(child, parents.concat(obj))
+ for child in obj.children.filter(function(x){return x.type === 'constant'})
+ mixin article(child, parents.concat(obj))
+
+
+
+mixin api()
+ -pos = 0
+ for obj in tree.children
+ .classContent
+ .membersBackground
+
+ div(class=' members pos#{pos}')
+ div(class=' membersContent pos#{pos}')
+ h1.memberHeader
+ -var heading = obj.path
+ span.name #{heading}
+
+ -if (true || obj.filename.indexOf("index") < 0)
+ ul(class='nav tabs pos#{pos}', data-tabs='tabs')
+ for selector, title in {'Events': ['event', 'events'], 'Constructors': ['constructor', 'constructors'], 'Class methods': ['class method', 'class_methods'], 'Class properties': ['class property', 'class_properties'], 'Instance methods': ['instance method', 'instance_methods'], 'Instance properties': ['instance property', 'instance_properties'], 'Constants': ['constant', 'constants']}
+ members = obj.children.filter(function(x){return x.type === selector[0]})
+ li(class="dropdown", data-dropdown="dropdown")
+ if members.length
+ a(href="\#", class="dropdown-toggle", data-toggle="dropdown")
+ != renameMemberTitle(title, members.length)
+ b.caret
+ ul.dropdown-menu
+ for m in members
+ li(data-id='#{m.id}', class='memberLink')
+ mixin link(m, [], true)
+ -pos++
+ -methodSection = constructorSection = propertySection = eventSection = false;
+ mixin article(obj, [])
+
+
+mixin short_description_list(collection)
+ ul.method-details-list
+ for obj in collection
+ if typeof obj === 'string'
+ obj = list[obj]
+ li.method-description
+ h4
+ mixin link(obj)
+ if obj.short_description
+ mixin markdown(obj.short_description)
+
+mixin link(obj, classes, short)
+ l = link(obj, classes, short)
+ != l
+
+mixin links(collection)
+ ul.method-list
+ for obj in collection
+ li
+ mixin link(obj)
diff --git a/lib/ace/mode/jade_highlight_rules.js b/lib/ace/mode/jade_highlight_rules.js
index 781b85f5..3c81f747 100644
--- a/lib/ace/mode/jade_highlight_rules.js
+++ b/lib/ace/mode/jade_highlight_rules.js
@@ -1,128 +1,327 @@
/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ * Distributed under the BSD license:
*
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
+ * Copyright (c) 2010, Ajax.org B.V.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the name of Ajax.org B.V. nor the
+ * names of its contributors may be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Ajax.org Code Editor (ACE).
- *
- * The Initial Developer of the Original Code is
- * Ajax.org B.V.
- * Portions created by the Initial Developer are Copyright (C) 2010
- * the Initial Developer. All Rights Reserved.
*
* Contributor(s):
- * Garen J. Torikian
- * Alexander Hanhikoski
+ *
*
- * Alternatively, the contents of this file may be used under the terms of
- * either the GNU General Public License Version 2 or later (the "GPL"), or
- * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
+/*
+ THIS FILE WAS AUTOGENERATED BY theme_mode.tmpl.js
+
+ IT MIGHT NOT BE PERFECT, PARTICULARLY:
+
+ IN DECIDING STATES TO TRANSITION TO,
+
+ IGNORING WHITESPACE,
+
+ EXTENDING EXISTING MODES,
+
+ GATHERING KEYWORDS, OR
+
+ RULE PREFERENCE ORDER.
+
+ ...But it's a good start from an existing *.tmlanguage file.
+*/
+
define(function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
-// var JavaScriptHighlightRules = require("ace/mode/javascript_highlight_rules").JavaScriptHighlightRules;
-// var CssHighlightRules = require("ace/mode/css_highlight_rules").CssHighlightRules;
-
var JadeHighlightRules = function() {
- this.$rules = {
- start: [
+ // regexp must not have capturing parentheses. Use (?:) instead.
+ // regexps are ordered -> the first match is used
+
+ this.$rules =
{
- token : ["keyword.control.import.include.jade"],
- regex : "(?:^\\s*\\b)(include)(?:\\b)"
+ "start": [
+ {
+ "token": {
+ "1": {
+ "name": "keyword.control.import.include.jade"
+ }
+ },
+ "regex": "^\\s*\\b(include)\\b"
},
{
- token : "keyword.other.doctype.jade",
- regex : "^(?:!!!)(?:\\s*[a-zA-Z0-9-_]+)?"
+ "token": "keyword.other.doctype.jade",
+ "regex": "^(!!!)(\\s*[a-zA-Z0-9-_]+)?"
},
{
- token : "comment",
- regex : "\\/\\/.*$"
+ "token": {
+ "1": {
+ "name": "punctuation.section.comment.jade"
+ }
+ },
+ "regex": "^ *(//)\\s*\\S.*$\\n?"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "punctuation.section.comment.jade"
+ }
+ },
+ "regex": "^(\\s*)(//)\\s*$",
+ "next": "state_4"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^(\\s*)(\\:markdown)",
+ "next": "state_5"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^(\\s*)(\\:sass)",
+ "next": "state_6"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^(\\s*)(\\:less)",
+ "next": "state_7"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^(\\s*)(\\:coffeescript)",
+ "next": "state_8"
+ },
+ {
+ "token": {
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^(\\s*)(\\:cdata)",
+ "next": "state_9"
},
// match stuff like: mixin dialog-title-desc(title, desc)
{
- token : ["storage.type.function.jade", "text", "entity.name.function.jade", "punctuation.definition.parameters.begin.jade", "variable.parameter.function.jade", "punctuation.definition.parameters.end.jade"],
- regex : "(mixin)( )([\\w\\-]+)\\s*(\\()(.*?)(\\))"
- },
+ "token": {
+ "1": {
+ "name": "storage.type.function.jade"
+ },
+ "2": {
+ "name": "entity.name.function.jade"
+ },
+ "3": {
+ "name": "punctuation.definition.parameters.begin.jade"
+ },
+ "4": {
+ "name": "variable.parameter.function.jade"
+ },
+ "5": {
+ "name": "punctuation.definition.parameters.end.jade"
+ }
+ },
+ "regex": "^\\s*(mixin) ([\\w\\-]+)\\s*(\\()(.*?)(\\))"
+ },
// match stuff like: mixin dialog-title-desc
{
- token : ["storage.type.function.jade", "text", "entity.name.function.jade"],
- regex : "(mixin)( )(\\w\\-]+)"
- },
- // Jade's iteration: 'each foo in foos'
- {
- token : ["keyword", "text", "variable", "text", "keyword", "text", "variable"],
- regex : "(each|for)(\\s+)([\\w-]+)(\\s+)(in)(\\s+)([\\w-]+)"
- },
- // Jade's iteration: 'each foo, bar in foos'
- {
- token : ["keyword", "text", "variable", "text", "variable", "text", "keyword", "text", "variable"],
- regex : "(each|for)(\\s+)([\\w-]+)(\\s*,\\s*)([\\w-]+)(\\s+)(in)(\\s+)([\\w-]+)"
- },
- {
- token : "string.interpolated.jade",
- regex : "[#!]\\{[^\\}]+\\}"
+ "token": {
+ "1": {
+ "name": "storage.type.function.jade"
+ },
+ "2": {
+ "name": "entity.name.function.jade"
+ }
+ },
+ "regex": "^\\s*(mixin) ([\\w\\-]+)"
},
{
- token : ["text", "meta.tag.any.jade", "meta.tag.any.jade"],
- regex : "(^\\s*)(?:(([\w]+))|(?=\.|#))"
+ "regex": "^\\s*(-|=|!=)",
+ "next": "state_12"
},
{
- token : "text",
- regex : "\\|.*$"
+ "token": {
+ "2": {
+ "name": "entity.name.tag.script.jade"
+ }
+ },
+ "regex": "^(\\s*)(script)",
+ "next": "state_13"
+ },
+ {
+ "token": "string.interpolated.jade",
+ "regex": "[#!]\\{[^\\}]+\\}"
+ },
+ // Match any tag, id or class. skip AST filters
+ {
+ "token": {
+ "1": {
+ "name": "meta.tag.any.jade"
+ },
+ "2": {
+ "name": "entity.name.tag.jade"
+ }
+ },
+ "regex": "^\\s*(?!\\w+\\:)(?:(([\\w]+))|(?=\\.|#))",
+ "next": "state_15"
+ },
+ {
+ "regex": "(?<=\\w)\\s*\\(",
+ "next": "state_16"
}
- ],
- parentheses: [
+ ],
+ "state_4": [
{
- token : "meta.tag.attribute.class.jade",
- regex : "\\.[\\w-]+<"
- },
- {
- token : "meta.tag.attribute.id.jade",
- regex : "#[\\w-]+<"
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
},
{
- token : "text",
- regex : "$",
- next : "start"
+ "token": "TODO",
+ "regex": ".+",
+ "next": "state_4"
}
- ]
- }
-
- // this.embedRules(JavaScriptHighlightRules, "js-", {
- // start: [{
- // token: "string",
- // regex: "^$"
- // }]
- // });
-
- // this.embedRules(CssHighlightRules, "css-", [{
- // token: "keyword",
- // regex: "style",
- // next: "start"
- // }]);
+ ],
+ "state_5": [
+ {
+ "include": "text.html.markdown"
+ },
+ {
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
+ }
+ ],
+ "state_6": [
+ {
+ "include": "source.sass"
+ },
+ {
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
+ }
+ ],
+ "state_7": [
+ {
+ "include": "source.css.less"
+ },
+ {
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
+ }
+ ],
+ "state_8": [
+ {
+ "include": "source.coffee"
+ },
+ {
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
+ }
+ ],
+ "state_9": [
+ {
+ "token": "TODO",
+ "regex": "^(?!\\1\\s+)",
+ "next": "start"
+ },
+ {
+ "token": "TODO",
+ "regex": ".+",
+ "next": "state_9"
+ }
+ ],
+ "state_12": [
+ {
+ "include": "source.js"
+ },
+ {
+ "token": "keyword.control.js",
+ "regex": "\\b(each)\\b"
+ },
+ {
+ "token": "TODO",
+ "regex": "$",
+ "next": "start"
+ }
+ ],
+ "state_13": [
+ {},
+ {
+ "include": "source.js"
+ },
+ {
+ "token": "TODO",
+ "regex": "^((?=(\\1)([\\w#\\.]|$\\n?))|^$\\n?)",
+ "next": "start"
+ }
+ ],
+ "state_15": [
+ {
+ "token": "meta.tag.attribute.class.jade",
+ "regex": "\\.[\\w-]+"
+ },
+ {
+ "token": "meta.tag.attribute.id.jade",
+ "regex": "#[\\w-]+"
+ },
+ {
+ "token": "TODO",
+ "regex": "$|(?!\\.|#|=|-)",
+ "next": "start"
+ }
+ ],
+ "state_16": [
+ {
+ "include": "#tag-stuff"
+ },
+ {
+ "token": "TODO",
+ "regex": "\\)",
+ "next": "start"
+ }
+ ]
+}
};
oop.inherits(JadeHighlightRules, TextHighlightRules);
diff --git a/lib/ace/mode/objective_c_highlight_rules.js b/lib/ace/mode/objective_c_highlight_rules.js
new file mode 100644
index 00000000..a5329c16
--- /dev/null
+++ b/lib/ace/mode/objective_c_highlight_rules.js
@@ -0,0 +1,346 @@
+/* ***** BEGIN LICENSE BLOCK *****
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Original Code is Ajax.org Code Editor (ACE).
+ *
+ * The Initial Developer of the Original Code is
+ * Ajax.org B.V.
+ * Portions created by the Initial Developer are Copyright (C) 2010
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ *
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+/*
+ THIS FILE WAS AUTOGENERATED BY theme_mode.tmpl.js
+
+ IT MIGHT NOT BE PERFECT, PARTICULARLY:
+
+ IN DECIDING STATES TO TRANSITION TO,
+
+ IGNORING WHITESPACE,
+
+ EXTENDING EXISTING MODES,
+
+ GATHERING KEYWORDS, OR
+
+ RULE PREFERENCE ORDER.
+
+ ...But it's a good start from an existing *.tmlanguage file.
+*/
+
+define(function(require, exports, module) {
+"use strict";
+
+var oop = require("../lib/oop");
+var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
+
+var ObjectiveCHighlightRules = function() {
+
+ // regexp must not have capturing parentheses. Use (?:) instead.
+ // regexps are ordered -> the first match is used
+
+ this.$rules =
+ {
+ "start": [
+ {
+ "token": {
+ "1": {
+ "name": "storage.type.objc"
+ },
+ "2": {
+ "name": "punctuation.definition.storage.type.objc"
+ },
+ "4": {
+ "name": "entity.name.type.objc"
+ },
+ "6": {
+ "name": "punctuation.definition.entity.other.inherited-class.objc"
+ },
+ "7": {
+ "name": "entity.other.inherited-class.objc"
+ },
+ "8": {
+ "name": "meta.divider.objc"
+ },
+ "9": {
+ "name": "meta.inherited-class.objc"
+ }
+ },
+ "regex": "((@)(interface|protocol))(?!.+;)\\s+([A-Za-z_][A-Za-z0-9_]*)\\s*((:)(?:\\s*)([A-Za-z][A-Za-z0-9]*))?(\\s|\\n)?",
+ "next": "state_1"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "storage.type.objc"
+ },
+ "2": {
+ "name": "punctuation.definition.storage.type.objc"
+ },
+ "4": {
+ "name": "entity.name.type.objc"
+ },
+ "5": {
+ "name": "entity.other.inherited-class.objc"
+ }
+ },
+ "regex": "((@)(implementation))\\s+([A-Za-z_][A-Za-z0-9_]*)\\s*(?::\\s*([A-Za-z][A-Za-z0-9]*))?",
+ "next": "state_2"
+ },
+ {
+ "token": {
+ "0": {
+ "name": "punctuation.definition.string.begin.objc"
+ }
+ },
+ "regex": "@\"",
+ "next": "state_3"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "storage.type.objc"
+ }
+ },
+ "regex": "\\b(id)\\s*(?=<)",
+ "next": "state_4"
+ },
+ {
+ "token": "keyword.control.macro.objc",
+ "regex": "\\b(NS_DURING|NS_HANDLER|NS_ENDHANDLER)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.keyword.objc"
+ }
+ },
+ "regex": "(@)(try|catch|finally|throw)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.keyword.objc"
+ }
+ },
+ "regex": "(@)(synchronized)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.keyword.objc"
+ }
+ },
+ "regex": "(@)(required|optional)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.keyword.objc"
+ }
+ },
+ "regex": "(@)(defs|encode)\\b"
+ },
+ {
+ "token": "storage.type.id.objc",
+ "regex": "\\bid\\b"
+ },
+ {
+ "token": "storage.type.objc",
+ "regex": "\\b(IBOutlet|IBAction|BOOL|SEL|id|unichar|IMP|Class)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.storage.type.objc"
+ }
+ },
+ "regex": "(@)(class|protocol)\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "storage.type.objc"
+ },
+ "2": {
+ "name": "punctuation.definition.storage.type.objc"
+ },
+ "3": {
+ "name": "punctuation.definition.storage.type.objc"
+ }
+ },
+ "regex": "((@)selector)\\s*(\\()",
+ "next": "state_13"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.definition.storage.modifier.objc"
+ }
+ },
+ "regex": "(@)(synchronized|public|private|protected)\\b"
+ },
+ {
+ "token": "constant.language.objc",
+ "regex": "\\b(YES|NO|Nil|nil)\\b"
+ },
+ {
+ "token": "support.variable.foundation",
+ "regex": "\\bNSApp\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.whitespace.support.function.cocoa.leopard"
+ },
+ "2": {
+ "name": "support.function.cocoa.leopard"
+ }
+ },
+ "regex": "(\\s*)\\b(NS(Rect(ToCGRect|FromCGRect)|MakeCollectable|S(tringFromProtocol|ize(ToCGSize|FromCGSize))|Draw(NinePartImage|ThreePartImage)|P(oint(ToCGPoint|FromCGPoint)|rotocolFromString)|EventMaskFromType|Value))\\b"
+ },
+ {
+ "token": {
+ "1": {
+ "name": "punctuation.whitespace.support.function.leading.cocoa"
+ },
+ "2": {
+ "name": "support.function.cocoa"
+ }
+ },
+ "regex": "(\\s*)\\b(NS(R(ound(DownToMultipleOfPageSize|UpToMultipleOfPageSize)|un(CriticalAlertPanel(RelativeToWindow)?|InformationalAlertPanel(RelativeToWindow)?|AlertPanel(RelativeToWindow)?)|e(set(MapTable|HashTable)|c(ycleZone|t(Clip(List)?|F(ill(UsingOperation|List(UsingOperation|With(Grays|Colors(UsingOperation)?))?)?|romString))|ordAllocationEvent)|turnAddress|leaseAlertPanel|a(dPixel|l(MemoryAvailable|locateCollectable))|gisterServicesProvider)|angeFromString)|Get(SizeAndAlignment|CriticalAlertPanel|InformationalAlertPanel|UncaughtExceptionHandler|FileType(s)?|WindowServerMemory|AlertPanel)|M(i(n(X|Y)|d(X|Y))|ouseInRect|a(p(Remove|Get|Member|Insert(IfAbsent|KnownAbsent)?)|ke(R(ect|ange)|Size|Point)|x(Range|X|Y)))|B(itsPer(SampleFromDepth|PixelFromDepth)|e(stDepth|ep|gin(CriticalAlertSheet|InformationalAlertSheet|AlertSheet)))|S(ho(uldRetainWithZone|w(sServicesMenuItem|AnimationEffect))|tringFrom(R(ect|ange)|MapTable|S(ize|elector)|HashTable|Class|Point)|izeFromString|e(t(ShowsServicesMenuItem|ZoneName|UncaughtExceptionHandler|FocusRingStyle)|lectorFromString|archPathForDirectoriesInDomains)|wap(Big(ShortToHost|IntToHost|DoubleToHost|FloatToHost|Long(ToHost|LongToHost))|Short|Host(ShortTo(Big|Little)|IntTo(Big|Little)|DoubleTo(Big|Little)|FloatTo(Big|Little)|Long(To(Big|Little)|LongTo(Big|Little)))|Int|Double|Float|L(ittle(ShortToHost|IntToHost|DoubleToHost|FloatToHost|Long(ToHost|LongToHost))|ong(Long)?)))|H(ighlightRect|o(stByteOrder|meDirectory(ForUser)?)|eight|ash(Remove|Get|Insert(IfAbsent|KnownAbsent)?)|FSType(CodeFromFileType|OfFile))|N(umberOfColorComponents|ext(MapEnumeratorPair|HashEnumeratorItem))|C(o(n(tainsRect|vert(GlyphsToPackedGlyphs|Swapped(DoubleToHost|FloatToHost)|Host(DoubleToSwapped|FloatToSwapped)))|unt(MapTable|HashTable|Frames|Windows(ForContext)?)|py(M(emoryPages|apTableWithZone)|Bits|HashTableWithZone|Object)|lorSpaceFromDepth|mpare(MapTables|HashTables))|lassFromString|reate(MapTable(WithZone)?|HashTable(WithZone)?|Zone|File(namePboardType|ContentsPboardType)))|TemporaryDirectory|I(s(ControllerMarker|EmptyRect|FreedObject)|n(setRect|crementExtraRefCount|te(r(sect(sRect|ionR(ect|ange))|faceStyleForKey)|gralRect)))|Zone(Realloc|Malloc|Name|Calloc|Fr(omPointer|ee))|O(penStepRootDirectory|ffsetRect)|D(i(sableScreenUpdates|videRect)|ottedFrameRect|e(c(imal(Round|Multiply|S(tring|ubtract)|Normalize|Co(py|mpa(ct|re))|IsNotANumber|Divide|Power|Add)|rementExtraRefCountWasZero)|faultMallocZone|allocate(MemoryPages|Object))|raw(Gr(oove|ayBezel)|B(itmap|utton)|ColorTiledRects|TiledRects|DarkBezel|W(hiteBezel|indowBackground)|LightBezel))|U(serName|n(ionR(ect|ange)|registerServicesProvider)|pdateDynamicServices)|Java(Bundle(Setup|Cleanup)|Setup(VirtualMachine)?|Needs(ToLoadClasses|VirtualMachine)|ClassesF(orBundle|romPath)|ObjectNamedInPath|ProvidesClasses)|P(oint(InRect|FromString)|erformService|lanarFromDepth|ageSize)|E(n(d(MapTableEnumeration|HashTableEnumeration)|umerate(MapTable|HashTable)|ableScreenUpdates)|qual(R(ects|anges)|Sizes|Points)|raseRect|xtraRefCount)|F(ileTypeForHFSTypeCode|ullUserName|r(ee(MapTable|HashTable)|ame(Rect(WithWidth(UsingOperation)?)?|Address)))|Wi(ndowList(ForContext)?|dth)|Lo(cationInRange|g(v|PageSize)?)|A(ccessibility(R(oleDescription(ForUIElement)?|aiseBadArgumentException)|Unignored(Children(ForOnlyChild)?|Descendant|Ancestor)|PostNotification|ActionDescription)|pplication(Main|Load)|vailableWindowDepths|ll(MapTable(Values|Keys)|HashTableObjects|ocate(MemoryPages|Collectable|Object)))))\\b"
+ },
+ {
+ "token": "support.class.cocoa.leopard",
+ "regex": "\\bNS(RuleEditor|G(arbageCollector|radient)|MapTable|HashTable|Co(ndition|llectionView(Item)?)|T(oolbarItemGroup|extInputClient|r(eeNode|ackingArea))|InvocationOperation|Operation(Queue)?|D(ictionaryController|ockTile)|P(ointer(Functions|Array)|athC(o(ntrol(Delegate)?|mponentCell)|ell(Delegate)?)|r(intPanelAccessorizing|edicateEditor(RowTemplate)?))|ViewController|FastEnumeration|Animat(ionContext|ablePropertyContainer))\\b"
+ },
+ {
+ "token": "support.class.cocoa",
+ "regex": "\\bNS(R(u(nLoop|ler(Marker|View))|e(sponder|cursiveLock|lativeSpecifier)|an(domSpecifier|geSpecifier))|G(etCommand|lyph(Generator|Storage|Info)|raphicsContext)|XML(Node|D(ocument|TD(Node)?)|Parser|Element)|M(iddleSpecifier|ov(ie(View)?|eCommand)|utable(S(tring|et)|C(haracterSet|opying)|IndexSet|D(ictionary|ata)|URLRequest|ParagraphStyle|A(ttributedString|rray))|e(ssagePort(NameServer)?|nu(Item(Cell)?|View)?|t(hodSignature|adata(Item|Query(ResultGroup|AttributeValueTuple)?)))|a(ch(BootstrapServer|Port)|trix))|B(itmapImageRep|ox|u(ndle|tton(Cell)?)|ezierPath|rowser(Cell)?)|S(hadow|c(anner|r(ipt(SuiteRegistry|C(o(ercionHandler|mmand(Description)?)|lassDescription)|ObjectSpecifier|ExecutionContext|WhoseTest)|oll(er|View)|een))|t(epper(Cell)?|atus(Bar|Item)|r(ing|eam))|imple(HorizontalTypesetter|CString)|o(cketPort(NameServer)?|und|rtDescriptor)|p(e(cifierTest|ech(Recognizer|Synthesizer)|ll(Server|Checker))|litView)|e(cureTextField(Cell)?|t(Command)?|archField(Cell)?|rializer|gmentedC(ontrol|ell))|lider(Cell)?|avePanel)|H(ost|TTP(Cookie(Storage)?|URLResponse)|elpManager)|N(ib(Con(nector|trolConnector)|OutletConnector)?|otification(Center|Queue)?|u(ll|mber(Formatter)?)|etService(Browser)?|ameSpecifier)|C(ha(ngeSpelling|racterSet)|o(n(stantString|nection|trol(ler)?|ditionLock)|d(ing|er)|unt(Command|edSet)|pying|lor(Space|P(ick(ing(Custom|Default)|er)|anel)|Well|List)?|m(p(oundPredicate|arisonPredicate)|boBox(Cell)?))|u(stomImageRep|rsor)|IImageRep|ell|l(ipView|o(seCommand|neCommand)|assDescription)|a(ched(ImageRep|URLResponse)|lendar(Date)?)|reateCommand)|T(hread|ypesetter|ime(Zone|r)|o(olbar(Item(Validations)?)?|kenField(Cell)?)|ext(Block|Storage|Container|Tab(le(Block)?)?|Input|View|Field(Cell)?|List|Attachment(Cell)?)?|a(sk|b(le(Header(Cell|View)|Column|View)|View(Item)?))|reeController)|I(n(dex(S(pecifier|et)|Path)|put(Manager|S(tream|erv(iceProvider|er(MouseTracker)?)))|vocation)|gnoreMisspelledWords|mage(Rep|Cell|View)?)|O(ut(putStream|lineView)|pen(GL(Context|Pixel(Buffer|Format)|View)|Panel)|bj(CTypeSerializationCallBack|ect(Controller)?))|D(i(st(antObject(Request)?|ributed(NotificationCenter|Lock))|ctionary|rectoryEnumerator)|ocument(Controller)?|e(serializer|cimalNumber(Behaviors|Handler)?|leteCommand)|at(e(Components|Picker(Cell)?|Formatter)?|a)|ra(wer|ggingInfo))|U(ser(InterfaceValidations|Defaults(Controller)?)|RL(Re(sponse|quest)|Handle(Client)?|C(onnection|ache|redential(Storage)?)|Download(Delegate)?|Prot(ocol(Client)?|ectionSpace)|AuthenticationChallenge(Sender)?)?|n(iqueIDSpecifier|doManager|archiver))|P(ipe|o(sitionalSpecifier|pUpButton(Cell)?|rt(Message|NameServer|Coder)?)|ICTImageRep|ersistentDocument|DFImageRep|a(steboard|nel|ragraphStyle|geLayout)|r(int(Info|er|Operation|Panel)|o(cessInfo|tocolChecker|perty(Specifier|ListSerialization)|gressIndicator|xy)|edicate))|E(numerator|vent|PSImageRep|rror|x(ception|istsCommand|pression))|V(iew(Animation)?|al(idated(ToobarItem|UserInterfaceItem)|ue(Transformer)?))|Keyed(Unarchiver|Archiver)|Qui(ckDrawView|tCommand)|F(ile(Manager|Handle|Wrapper)|o(nt(Manager|Descriptor|Panel)?|rm(Cell|atter)))|W(hoseSpecifier|indow(Controller)?|orkspace)|L(o(c(k(ing)?|ale)|gicalTest)|evelIndicator(Cell)?|ayoutManager)|A(ssertionHandler|nimation|ctionCell|ttributedString|utoreleasePool|TSTypesetter|ppl(ication|e(Script|Event(Manager|Descriptor)))|ffineTransform|lert|r(chiver|ray(Controller)?)))\\b"
+ },
+ {
+ "token": "support.type.cocoa.leopard",
+ "regex": "\\bNS(R(oundingMode|ule(Editor(RowType|NestingMode)|rOrientation)|e(questUserAttentionType|lativePosition))|G(lyphInscription|radientDrawingOptions)|XML(NodeKind|D(ocumentContentKind|TDNodeKind)|ParserError)|M(ultibyteGlyphPacking|apTableOptions)|B(itmapFormat|oxType|ezierPathElement|ackgroundStyle|rowserDropOperation)|S(tr(ing(CompareOptions|DrawingOptions|EncodingConversionOptions)|eam(Status|Event))|p(eechBoundary|litViewDividerStyle)|e(archPathD(irectory|omainMask)|gmentS(tyle|witchTracking))|liderType|aveOptions)|H(TTPCookieAcceptPolicy|ashTableOptions)|N(otification(SuspensionBehavior|Coalescing)|umberFormatter(RoundingMode|Behavior|Style|PadPosition)|etService(sError|Options))|C(haracterCollection|o(lor(RenderingIntent|SpaceModel|PanelMode)|mp(oundPredicateType|arisonPredicateModifier))|ellStateValue|al(culationError|endarUnit))|T(ypesetterControlCharacterAction|imeZoneNameStyle|e(stComparisonOperation|xt(Block(Dimension|V(erticalAlignment|alueType)|Layer)|TableLayoutAlgorithm|FieldBezelStyle))|ableView(SelectionHighlightStyle|ColumnAutoresizingStyle)|rackingAreaOptions)|I(n(sertionPosition|te(rfaceStyle|ger))|mage(RepLoadStatus|Scaling|CacheMode|FrameStyle|LoadStatus|Alignment))|Ope(nGLPixelFormatAttribute|rationQueuePriority)|Date(Picker(Mode|Style)|Formatter(Behavior|Style))|U(RL(RequestCachePolicy|HandleStatus|C(acheStoragePolicy|redentialPersistence))|Integer)|P(o(stingStyle|int(ingDeviceType|erFunctionsOptions)|pUpArrowPosition)|athStyle|r(int(ing(Orientation|PaginationMode)|erTableStatus|PanelOptions)|opertyList(MutabilityOptions|Format)|edicateOperatorType))|ExpressionType|KeyValue(SetMutationKind|Change)|QTMovieLoopMode|F(indPanel(SubstringMatchType|Action)|o(nt(RenderingMode|FamilyClass)|cusRingPlacement))|W(hoseSubelementIdentifier|ind(ingRule|ow(B(utton|ackingLocation)|SharingType|CollectionBehavior)))|L(ine(MovementDirection|SweepDirection|CapStyle|JoinStyle)|evelIndicatorStyle)|Animation(BlockingMode|Curve))\\b"
+ },
+ {
+ "token": "support.class.quartz",
+ "regex": "\\bC(I(Sampler|Co(ntext|lor)|Image(Accumulator)?|PlugIn(Registration)?|Vector|Kernel|Filter(Generator|Shape)?)|A(Renderer|MediaTiming(Function)?|BasicAnimation|ScrollLayer|Constraint(LayoutManager)?|T(iledLayer|extLayer|rans(ition|action))|OpenGLLayer|PropertyAnimation|KeyframeAnimation|Layer|A(nimation(Group)?|ction)))\\b"
+ },
+ {
+ "token": "support.type.quartz",
+ "regex": "\\bC(G(Float|Point|Size|Rect)|IFormat|AConstraintAttribute)\\b"
+ },
+ {
+ "token": "support.type.cocoa",
+ "regex": "\\bNS(R(ect(Edge)?|ange)|G(lyph(Relation|LayoutMode)?|radientType)|M(odalSession|a(trixMode|p(Table|Enumerator)))|B(itmapImageFileType|orderType|uttonType|ezelStyle|ackingStoreType|rowserColumnResizingType)|S(cr(oll(er(Part|Arrow)|ArrowPosition)|eenAuxiliaryOpaque)|tringEncoding|ize|ocketNativeHandle|election(Granularity|Direction|Affinity)|wapped(Double|Float)|aveOperationType)|Ha(sh(Table|Enumerator)|ndler(2)?)|C(o(ntrol(Size|Tint)|mp(ositingOperation|arisonResult))|ell(State|Type|ImagePosition|Attribute))|T(hreadPrivate|ypesetterGlyphInfo|i(ckMarkPosition|tlePosition|meInterval)|o(ol(TipTag|bar(SizeMode|DisplayMode))|kenStyle)|IFFCompression|ext(TabType|Alignment)|ab(State|leViewDropOperation|ViewType)|rackingRectTag)|ImageInterpolation|Zone|OpenGL(ContextAuxiliary|PixelFormatAuxiliary)|D(ocumentChangeType|atePickerElementFlags|ra(werState|gOperation))|UsableScrollerParts|P(oint|r(intingPageOrder|ogressIndicator(Style|Th(ickness|readInfo))))|EventType|KeyValueObservingOptions|Fo(nt(SymbolicTraits|TraitMask|Action)|cusRingType)|W(indow(OrderingMode|Depth)|orkspace(IconCreationOptions|LaunchOptions)|ritingDirection)|L(ineBreakMode|ayout(Status|Direction))|A(nimation(Progress|Effect)|ppl(ication(TerminateReply|DelegateReply|PrintReply)|eEventManagerSuspensionID)|ffineTransformStruct|lertStyle))\\b"
+ },
+ {
+ "token": "support.constant.cocoa",
+ "regex": "\\bNS(NotFound|Ordered(Ascending|Descending|Same))\\b"
+ },
+ {
+ "token": "support.constant.notification.cocoa.leopard",
+ "regex": "\\bNS(MenuDidBeginTracking|ViewDidUpdateTrackingAreas)?Notification\\b"
+ },
+ {
+ "token": "support.constant.notification.cocoa",
+ "regex": "\\bNS(Menu(Did(RemoveItem|SendAction|ChangeItem|EndTracking|AddItem)|WillSendAction)|S(ystemColorsDidChange|plitView(DidResizeSubviews|WillResizeSubviews))|C(o(nt(extHelpModeDid(Deactivate|Activate)|rolT(intDidChange|extDid(BeginEditing|Change|EndEditing)))|lor(PanelColorDidChange|ListDidChange)|mboBox(Selection(IsChanging|DidChange)|Will(Dismiss|PopUp)))|lassDescriptionNeededForClass)|T(oolbar(DidRemoveItem|WillAddItem)|ext(Storage(DidProcessEditing|WillProcessEditing)|Did(BeginEditing|Change|EndEditing)|View(DidChange(Selection|TypingAttributes)|WillChangeNotifyingTextView))|ableView(Selection(IsChanging|DidChange)|ColumnDid(Resize|Move)))|ImageRepRegistryDidChange|OutlineView(Selection(IsChanging|DidChange)|ColumnDid(Resize|Move)|Item(Did(Collapse|Expand)|Will(Collapse|Expand)))|Drawer(Did(Close|Open)|Will(Close|Open))|PopUpButton(CellWillPopUp|WillPopUp)|View(GlobalFrameDidChange|BoundsDidChange|F(ocusDidChange|rameDidChange))|FontSetChanged|W(indow(Did(Resi(ze|gn(Main|Key))|M(iniaturize|ove)|Become(Main|Key)|ChangeScreen(|Profile)|Deminiaturize|Update|E(ndSheet|xpose))|Will(M(iniaturize|ove)|BeginSheet|Close))|orkspace(SessionDid(ResignActive|BecomeActive)|Did(Mount|TerminateApplication|Unmount|PerformFileOperation|Wake|LaunchApplication)|Will(Sleep|Unmount|PowerOff|LaunchApplication)))|A(ntialiasThresholdChanged|ppl(ication(Did(ResignActive|BecomeActive|Hide|ChangeScreenParameters|U(nhide|pdate)|FinishLaunching)|Will(ResignActive|BecomeActive|Hide|Terminate|U(nhide|pdate)|FinishLaunching))|eEventManagerWillProcessFirstEvent)))Notification\\b"
+ },
+ {
+ "token": "support.constant.cocoa.leopard",
+ "regex": "\\bNS(RuleEditor(RowType(Simple|Compound)|NestingMode(Si(ngle|mple)|Compound|List))|GradientDraws(BeforeStartingLocation|AfterEndingLocation)|M(inusSetExpressionType|a(chPortDeallocate(ReceiveRight|SendRight|None)|pTable(StrongMemory|CopyIn|ZeroingWeakMemory|ObjectPointerPersonality)))|B(oxCustom|undleExecutableArchitecture(X86|I386|PPC(64)?)|etweenPredicateOperatorType|ackgroundStyle(Raised|Dark|L(ight|owered)))|S(tring(DrawingTruncatesLastVisibleLine|EncodingConversion(ExternalRepresentation|AllowLossy))|ubqueryExpressionType|p(e(ech(SentenceBoundary|ImmediateBoundary|WordBoundary)|llingState(GrammarFlag|SpellingFlag))|litViewDividerStyleThi(n|ck))|e(rvice(RequestTimedOutError|M(iscellaneousError|alformedServiceDictionaryError)|InvalidPasteboardDataError|ErrorM(inimum|aximum)|Application(NotFoundError|LaunchFailedError))|gmentStyle(Round(Rect|ed)|SmallSquare|Capsule|Textured(Rounded|Square)|Automatic)))|H(UDWindowMask|ashTable(StrongMemory|CopyIn|ZeroingWeakMemory|ObjectPointerPersonality))|N(oModeColorPanel|etServiceNoAutoRename)|C(hangeRedone|o(ntainsPredicateOperatorType|l(orRenderingIntent(RelativeColorimetric|Saturation|Default|Perceptual|AbsoluteColorimetric)|lectorDisabledOption))|ellHit(None|ContentArea|TrackableArea|EditableTextArea))|T(imeZoneNameStyle(S(hort(Standard|DaylightSaving)|tandard)|DaylightSaving)|extFieldDatePickerStyle|ableViewSelectionHighlightStyle(Regular|SourceList)|racking(Mouse(Moved|EnteredAndExited)|CursorUpdate|InVisibleRect|EnabledDuringMouseDrag|A(ssumeInside|ctive(In(KeyWindow|ActiveApp)|WhenFirstResponder|Always))))|I(n(tersectSetExpressionType|dexedColorSpaceModel)|mageScale(None|Proportionally(Down|UpOrDown)|AxesIndependently))|Ope(nGLPFAAllowOfflineRenderers|rationQueue(DefaultMaxConcurrentOperationCount|Priority(High|Normal|Very(High|Low)|Low)))|D(iacriticInsensitiveSearch|ownloadsDirectory)|U(nionSetExpressionType|TF(16(BigEndianStringEncoding|StringEncoding|LittleEndianStringEncoding)|32(BigEndianStringEncoding|StringEncoding|LittleEndianStringEncoding)))|P(ointerFunctions(Ma(chVirtualMemory|llocMemory)|Str(ongMemory|uctPersonality)|C(StringPersonality|opyIn)|IntegerPersonality|ZeroingWeakMemory|O(paque(Memory|Personality)|bjectP(ointerPersonality|ersonality)))|at(hStyle(Standard|NavigationBar|PopUp)|ternColorSpaceModel)|rintPanelShows(Scaling|Copies|Orientation|P(a(perSize|ge(Range|SetupAccessory))|review)))|Executable(RuntimeMismatchError|NotLoadableError|ErrorM(inimum|aximum)|L(inkError|oadError)|ArchitectureMismatchError)|KeyValueObservingOption(Initial|Prior)|F(i(ndPanelSubstringMatchType(StartsWith|Contains|EndsWith|FullWord)|leRead(TooLargeError|UnknownStringEncodingError))|orcedOrderingSearch)|Wi(ndow(BackingLocation(MainMemory|Default|VideoMemory)|Sharing(Read(Only|Write)|None)|CollectionBehavior(MoveToActiveSpace|CanJoinAllSpaces|Default))|dthInsensitiveSearch)|AggregateExpressionType)\\b"
+ },
+ {
+ "token": "support.constant.cocoa",
+ "regex": "\\bNS(R(GB(ModeColorPanel|ColorSpaceModel)|ight(Mouse(D(own(Mask)?|ragged(Mask)?)|Up(Mask)?)|T(ext(Movement|Alignment)|ab(sBezelBorder|StopType))|ArrowFunctionKey)|ound(RectBezelStyle|Bankers|ed(BezelStyle|TokenStyle|DisclosureBezelStyle)|Down|Up|Plain|Line(CapStyle|JoinStyle))|un(StoppedResponse|ContinuesResponse|AbortedResponse)|e(s(izableWindowMask|et(CursorRectsRunLoopOrdering|FunctionKey))|ce(ssedBezelStyle|iver(sCantHandleCommandScriptError|EvaluationScriptError))|turnTextMovement|doFunctionKey|quiredArgumentsMissingScriptError|l(evancyLevelIndicatorStyle|ative(Before|After))|gular(SquareBezelStyle|ControlSize)|moveTraitFontAction)|a(n(domSubelement|geDateMode)|tingLevelIndicatorStyle|dio(ModeMatrix|Button)))|G(IFFileType|lyph(Below|Inscribe(B(elow|ase)|Over(strike|Below)|Above)|Layout(WithPrevious|A(tAPoint|gainstAPoint))|A(ttribute(BidiLevel|Soft|Inscribe|Elastic)|bove))|r(ooveBorder|eaterThan(Comparison|OrEqualTo(Comparison|PredicateOperatorType)|PredicateOperatorType)|a(y(ModeColorPanel|ColorSpaceModel)|dient(None|Con(cave(Strong|Weak)|vex(Strong|Weak)))|phiteControlTint)))|XML(N(o(tationDeclarationKind|de(CompactEmptyElement|IsCDATA|OptionsNone|Use(SingleQuotes|DoubleQuotes)|Pre(serve(NamespaceOrder|C(haracterReferences|DATA)|DTD|Prefixes|E(ntities|mptyElements)|Quotes|Whitespace|A(ttributeOrder|ll))|ttyPrint)|ExpandEmptyElement))|amespaceKind)|CommentKind|TextKind|InvalidKind|D(ocument(X(MLKind|HTMLKind|Include)|HTMLKind|T(idy(XML|HTML)|extKind)|IncludeContentTypeDeclaration|Validate|Kind)|TDKind)|P(arser(GTRequiredError|XMLDeclNot(StartedError|FinishedError)|Mi(splaced(XMLDeclarationError|CDATAEndStringError)|xedContentDeclNot(StartedError|FinishedError))|S(t(andaloneValueError|ringNot(StartedError|ClosedError))|paceRequiredError|eparatorRequiredError)|N(MTOKENRequiredError|o(t(ationNot(StartedError|FinishedError)|WellBalancedError)|DTDError)|amespaceDeclarationError|AMERequiredError)|C(haracterRef(In(DTDError|PrologError|EpilogError)|AtEOFError)|o(nditionalSectionNot(StartedError|FinishedError)|mment(NotFinishedError|ContainsDoubleHyphenError))|DATANotFinishedError)|TagNameMismatchError|In(ternalError|valid(HexCharacterRefError|C(haracter(RefError|InEntityError|Error)|onditionalSectionError)|DecimalCharacterRefError|URIError|Encoding(NameError|Error)))|OutOfMemoryError|D(ocumentStartError|elegateAbortedParseError|OCTYPEDeclNotFinishedError)|U(RI(RequiredError|FragmentError)|n(declaredEntityError|parsedEntityError|knownEncodingError|finishedTagError))|P(CDATARequiredError|ublicIdentifierRequiredError|arsedEntityRef(MissingSemiError|NoNameError|In(Internal(SubsetError|Error)|PrologError|EpilogError)|AtEOFError)|r(ocessingInstructionNot(StartedError|FinishedError)|ematureDocumentEndError))|E(n(codingNotSupportedError|tity(Ref(In(DTDError|PrologError|EpilogError)|erence(MissingSemiError|WithoutNameError)|LoopError|AtEOFError)|BoundaryError|Not(StartedError|FinishedError)|Is(ParameterError|ExternalError)|ValueRequiredError))|qualExpectedError|lementContentDeclNot(StartedError|FinishedError)|xt(ernalS(tandaloneEntityError|ubsetNotFinishedError)|raContentError)|mptyDocumentError)|L(iteralNot(StartedError|FinishedError)|T(RequiredError|SlashRequiredError)|essThanSymbolInAttributeError)|Attribute(RedefinedError|HasNoValueError|Not(StartedError|FinishedError)|ListNot(StartedError|FinishedError)))|rocessingInstructionKind)|E(ntity(GeneralKind|DeclarationKind|UnparsedKind|P(ar(sedKind|ameterKind)|redefined))|lement(Declaration(MixedKind|UndefinedKind|E(lementKind|mptyKind)|Kind|AnyKind)|Kind))|Attribute(N(MToken(sKind|Kind)|otationKind)|CDATAKind|ID(Ref(sKind|Kind)|Kind)|DeclarationKind|En(tit(yKind|iesKind)|umerationKind)|Kind))|M(i(n(XEdge|iaturizableWindowMask|YEdge|uteCalendarUnit)|terLineJoinStyle|ddleSubelement|xedState)|o(nthCalendarUnit|deSwitchFunctionKey|use(Moved(Mask)?|E(ntered(Mask)?|ventSubtype|xited(Mask)?))|veToBezierPathElement|mentary(ChangeButton|Push(Button|InButton)|Light(Button)?))|enuFunctionKey|a(c(intoshInterfaceStyle|OSRomanStringEncoding)|tchesPredicateOperatorType|ppedRead|x(XEdge|YEdge))|ACHOperatingSystem)|B(MPFileType|o(ttomTabsBezelBorder|ldFontMask|rderlessWindowMask|x(Se(condary|parator)|OldStyle|Primary))|uttLineCapStyle|e(zelBorder|velLineJoinStyle|low(Bottom|Top)|gin(sWith(Comparison|PredicateOperatorType)|FunctionKey))|lueControlTint|ack(spaceCharacter|tabTextMovement|ingStore(Retained|Buffered|Nonretained)|TabCharacter|wardsSearch|groundTab)|r(owser(NoColumnResizing|UserColumnResizing|AutoColumnResizing)|eakFunctionKey))|S(h(ift(JISStringEncoding|KeyMask)|ow(ControlGlyphs|InvisibleGlyphs)|adowlessSquareBezelStyle)|y(s(ReqFunctionKey|tem(D(omainMask|efined(Mask)?)|FunctionKey))|mbolStringEncoding)|c(a(nnedOption|le(None|ToFit|Proportionally))|r(oll(er(NoPart|Increment(Page|Line|Arrow)|Decrement(Page|Line|Arrow)|Knob(Slot)?|Arrows(M(inEnd|axEnd)|None|DefaultSetting))|Wheel(Mask)?|LockFunctionKey)|eenChangedEventType))|t(opFunctionKey|r(ingDrawing(OneShot|DisableScreenFontSubstitution|Uses(DeviceMetrics|FontLeading|LineFragmentOrigin))|eam(Status(Reading|NotOpen|Closed|Open(ing)?|Error|Writing|AtEnd)|Event(Has(BytesAvailable|SpaceAvailable)|None|OpenCompleted|E(ndEncountered|rrorOccurred)))))|i(ngle(DateMode|UnderlineStyle)|ze(DownFontAction|UpFontAction))|olarisOperatingSystem|unOSOperatingSystem|pecialPageOrder|e(condCalendarUnit|lect(By(Character|Paragraph|Word)|i(ng(Next|Previous)|onAffinity(Downstream|Upstream))|edTab|FunctionKey)|gmentSwitchTracking(Momentary|Select(One|Any)))|quareLineCapStyle|witchButton|ave(ToOperation|Op(tions(Yes|No|Ask)|eration)|AsOperation)|mall(SquareBezelStyle|C(ontrolSize|apsFontMask)|IconButtonBezelStyle))|H(ighlightModeMatrix|SBModeColorPanel|o(ur(Minute(SecondDatePickerElementFlag|DatePickerElementFlag)|CalendarUnit)|rizontalRuler|meFunctionKey)|TTPCookieAcceptPolicy(Never|OnlyFromMainDocumentDomain|Always)|e(lp(ButtonBezelStyle|KeyMask|FunctionKey)|avierFontAction)|PUXOperatingSystem)|Year(MonthDa(yDatePickerElementFlag|tePickerElementFlag)|CalendarUnit)|N(o(n(StandardCharacterSetFontMask|ZeroWindingRule|activatingPanelMask|LossyASCIIStringEncoding)|Border|t(ification(SuspensionBehavior(Hold|Coalesce|D(eliverImmediately|rop))|NoCoalescing|CoalescingOn(Sender|Name)|DeliverImmediately|PostToAllSessions)|PredicateType|EqualToPredicateOperatorType)|S(cr(iptError|ollerParts)|ubelement|pecifierError)|CellMask|T(itle|opLevelContainersSpecifierError|abs(BezelBorder|NoBorder|LineBorder))|I(nterfaceStyle|mage)|UnderlineStyle|FontChangeAction)|u(ll(Glyph|CellType)|m(eric(Search|PadKeyMask)|berFormatter(Round(Half(Down|Up|Even)|Ceiling|Down|Up|Floor)|Behavior(10|Default)|S(cientificStyle|pellOutStyle)|NoStyle|CurrencyStyle|DecimalStyle|P(ercentStyle|ad(Before(Suffix|Prefix)|After(Suffix|Prefix))))))|e(t(Services(BadArgumentError|NotFoundError|C(ollisionError|ancelledError)|TimeoutError|InvalidError|UnknownError|ActivityInProgress)|workDomainMask)|wlineCharacter|xt(StepInterfaceStyle|FunctionKey))|EXTSTEPStringEncoding|a(t(iveShortGlyphPacking|uralTextAlignment)|rrowFontMask))|C(hange(ReadOtherContents|GrayCell(Mask)?|BackgroundCell(Mask)?|Cleared|Done|Undone|Autosaved)|MYK(ModeColorPanel|ColorSpaceModel)|ircular(BezelStyle|Slider)|o(n(stantValueExpressionType|t(inuousCapacityLevelIndicatorStyle|entsCellMask|ain(sComparison|erSpecifierError)|rol(Glyph|KeyMask))|densedFontMask)|lor(Panel(RGBModeMask|GrayModeMask|HSBModeMask|C(MYKModeMask|olorListModeMask|ustomPaletteModeMask|rayonModeMask)|WheelModeMask|AllModesMask)|ListModeColorPanel)|reServiceDirectory|m(p(osite(XOR|Source(In|O(ut|ver)|Atop)|Highlight|C(opy|lear)|Destination(In|O(ut|ver)|Atop)|Plus(Darker|Lighter))|ressedFontMask)|mandKeyMask))|u(stom(SelectorPredicateOperatorType|PaletteModeColorPanel)|r(sor(Update(Mask)?|PointingDevice)|veToBezierPathElement))|e(nterT(extAlignment|abStopType)|ll(State|H(ighlighted|as(Image(Horizontal|OnLeftOrBottom)|OverlappingImage))|ChangesContents|Is(Bordered|InsetButton)|Disabled|Editable|LightsBy(Gray|Background|Contents)|AllowsMixedState))|l(ipPagination|o(s(ePathBezierPathElement|ableWindowMask)|ckAndCalendarDatePickerStyle)|ear(ControlTint|DisplayFunctionKey|LineFunctionKey))|a(seInsensitive(Search|PredicateOption)|n(notCreateScriptCommandError|cel(Button|TextMovement))|chesDirectory|lculation(NoError|Overflow|DivideByZero|Underflow|LossOfPrecision)|rriageReturnCharacter)|r(itical(Request|AlertStyle)|ayonModeColorPanel))|T(hick(SquareBezelStyle|erSquareBezelStyle)|ypesetter(Behavior|HorizontalTabAction|ContainerBreakAction|ZeroAdvancementAction|OriginalBehavior|ParagraphBreakAction|WhitespaceAction|L(ineBreakAction|atestBehavior))|i(ckMark(Right|Below|Left|Above)|tledWindowMask|meZoneDatePickerElementFlag)|o(olbarItemVisibilityPriority(Standard|High|User|Low)|pTabsBezelBorder|ggleButton)|IFF(Compression(N(one|EXT)|CCITTFAX(3|4)|OldJPEG|JPEG|PackBits|LZW)|FileType)|e(rminate(Now|Cancel|Later)|xt(Read(InapplicableDocumentTypeError|WriteErrorM(inimum|aximum))|Block(M(i(nimum(Height|Width)|ddleAlignment)|a(rgin|ximum(Height|Width)))|B(o(ttomAlignment|rder)|aselineAlignment)|Height|TopAlignment|P(ercentageValueType|adding)|Width|AbsoluteValueType)|StorageEdited(Characters|Attributes)|CellType|ured(RoundedBezelStyle|BackgroundWindowMask|SquareBezelStyle)|Table(FixedLayoutAlgorithm|AutomaticLayoutAlgorithm)|Field(RoundedBezel|SquareBezel|AndStepperDatePickerStyle)|WriteInapplicableDocumentTypeError|ListPrependEnclosingMarker))|woByteGlyphPacking|ab(Character|TextMovement|le(tP(oint(Mask|EventSubtype)?|roximity(Mask|EventSubtype)?)|Column(NoResizing|UserResizingMask|AutoresizingMask)|View(ReverseSequentialColumnAutoresizingStyle|GridNone|S(olid(HorizontalGridLineMask|VerticalGridLineMask)|equentialColumnAutoresizingStyle)|NoColumnAutoresizing|UniformColumnAutoresizingStyle|FirstColumnOnlyAutoresizingStyle|LastColumnOnlyAutoresizingStyle)))|rackModeMatrix)|I(n(sert(CharFunctionKey|FunctionKey|LineFunctionKey)|t(Type|ernalS(criptError|pecifierError))|dexSubelement|validIndexSpecifierError|formational(Request|AlertStyle)|PredicateOperatorType)|talicFontMask|SO(2022JPStringEncoding|Latin(1StringEncoding|2StringEncoding))|dentityMappingCharacterCollection|llegalTextMovement|mage(R(ight|ep(MatchesDevice|LoadStatus(ReadingHeader|Completed|InvalidData|Un(expectedEOF|knownType)|WillNeedAllData)))|Below|C(ellType|ache(BySize|Never|Default|Always))|Interpolation(High|None|Default|Low)|O(nly|verlaps)|Frame(Gr(oove|ayBezel)|Button|None|Photo)|L(oadStatus(ReadError|C(ompleted|ancelled)|InvalidData|UnexpectedEOF)|eft)|A(lign(Right|Bottom(Right|Left)?|Center|Top(Right|Left)?|Left)|bove)))|O(n(State|eByteGlyphPacking|OffButton|lyScrollerArrows)|ther(Mouse(D(own(Mask)?|ragged(Mask)?)|Up(Mask)?)|TextMovement)|SF1OperatingSystem|pe(n(GL(GO(Re(setLibrary|tainRenderers)|ClearFormatCache|FormatCacheSize)|PFA(R(obust|endererID)|M(inimumPolicy|ulti(sample|Screen)|PSafe|aximumPolicy)|BackingStore|S(creenMask|te(ncilSize|reo)|ingleRenderer|upersample|ample(s|Buffers|Alpha))|NoRecovery|C(o(lor(Size|Float)|mpliant)|losestPolicy)|OffScreen|D(oubleBuffer|epthSize)|PixelBuffer|VirtualScreenCount|FullScreen|Window|A(cc(umSize|elerated)|ux(Buffers|DepthStencil)|l(phaSize|lRenderers))))|StepUnicodeReservedBase)|rationNotSupportedForKeyS(criptError|pecifierError))|ffState|KButton|rPredicateType|bjC(B(itfield|oolType)|S(hortType|tr(ingType|uctType)|electorType)|NoType|CharType|ObjectType|DoubleType|UnionType|PointerType|VoidType|FloatType|Long(Type|longType)|ArrayType))|D(i(s(c(losureBezelStyle|reteCapacityLevelIndicatorStyle)|playWindowRunLoopOrdering)|acriticInsensitivePredicateOption|rect(Selection|PredicateModifier))|o(c(ModalWindowMask|ument(Directory|ationDirectory))|ubleType|wn(TextMovement|ArrowFunctionKey))|e(s(cendingPageOrder|ktopDirectory)|cimalTabStopType|v(ice(NColorSpaceModel|IndependentModifierFlagsMask)|eloper(Directory|ApplicationDirectory))|fault(ControlTint|TokenStyle)|lete(Char(acter|FunctionKey)|FunctionKey|LineFunctionKey)|moApplicationDirectory)|a(yCalendarUnit|teFormatter(MediumStyle|Behavior(10|Default)|ShortStyle|NoStyle|FullStyle|LongStyle))|ra(wer(Clos(ingState|edState)|Open(ingState|State))|gOperation(Generic|Move|None|Copy|Delete|Private|Every|Link|All)))|U(ser(CancelledError|D(irectory|omainMask)|FunctionKey)|RL(Handle(NotLoaded|Load(Succeeded|InProgress|Failed))|CredentialPersistence(None|Permanent|ForSession))|n(scaledWindowMask|cachedRead|i(codeStringEncoding|talicFontMask|fiedTitleAndToolbarWindowMask)|d(o(CloseGroupingRunLoopOrdering|FunctionKey)|e(finedDateComponent|rline(Style(Single|None|Thick|Double)|Pattern(Solid|D(ot|ash(Dot(Dot)?)?)))))|known(ColorSpaceModel|P(ointingDevice|ageOrder)|KeyS(criptError|pecifierError))|boldFontMask)|tilityWindowMask|TF8StringEncoding|p(dateWindowsRunLoopOrdering|TextMovement|ArrowFunctionKey))|J(ustifiedTextAlignment|PEG(2000FileType|FileType)|apaneseEUC(GlyphPacking|StringEncoding))|P(o(s(t(Now|erFontMask|WhenIdle|ASAP)|iti(on(Replace|Be(fore|ginning)|End|After)|ve(IntType|DoubleType|FloatType)))|pUp(NoArrow|ArrowAt(Bottom|Center))|werOffEventType|rtraitOrientation)|NGFileType|ush(InCell(Mask)?|OnPushOffButton)|e(n(TipMask|UpperSideMask|PointingDevice|LowerSideMask)|riodic(Mask)?)|P(S(caleField|tatus(Title|Field)|aveButton)|N(ote(Title|Field)|ame(Title|Field))|CopiesField|TitleField|ImageButton|OptionsButton|P(a(perFeedButton|ge(Range(To|From)|ChoiceMatrix))|reviewButton)|LayoutButton)|lainTextTokenStyle|a(useFunctionKey|ragraphSeparatorCharacter|ge(DownFunctionKey|UpFunctionKey))|r(int(ing(ReplyLater|Success|Cancelled|Failure)|ScreenFunctionKey|erTable(NotFound|OK|Error)|FunctionKey)|o(p(ertyList(XMLFormat|MutableContainers(AndLeaves)?|BinaryFormat|Immutable|OpenStepFormat)|rietaryStringEncoding)|gressIndicator(BarStyle|SpinningStyle|Preferred(SmallThickness|Thickness|LargeThickness|AquaThickness)))|e(ssedTab|vFunctionKey))|L(HeightForm|CancelButton|TitleField|ImageButton|O(KButton|rientationMatrix)|UnitsButton|PaperNameButton|WidthForm))|E(n(terCharacter|d(sWith(Comparison|PredicateOperatorType)|FunctionKey))|v(e(nOddWindingRule|rySubelement)|aluatedObjectExpressionType)|qualTo(Comparison|PredicateOperatorType)|ra(serPointingDevice|CalendarUnit|DatePickerElementFlag)|x(clude(10|QuickDrawElementsIconCreationOption)|pandedFontMask|ecuteFunctionKey))|V(i(ew(M(in(XMargin|YMargin)|ax(XMargin|YMargin))|HeightSizable|NotSizable|WidthSizable)|aPanelFontAction)|erticalRuler|a(lidationErrorM(inimum|aximum)|riableExpressionType))|Key(SpecifierEvaluationScriptError|Down(Mask)?|Up(Mask)?|PathExpressionType|Value(MinusSetMutation|SetSetMutation|Change(Re(placement|moval)|Setting|Insertion)|IntersectSetMutation|ObservingOption(New|Old)|UnionSetMutation|ValidationError))|QTMovie(NormalPlayback|Looping(BackAndForthPlayback|Playback))|F(1(1FunctionKey|7FunctionKey|2FunctionKey|8FunctionKey|3FunctionKey|9FunctionKey|4FunctionKey|5FunctionKey|FunctionKey|0FunctionKey|6FunctionKey)|7FunctionKey|i(nd(PanelAction(Replace(A(ndFind|ll(InSelection)?))?|S(howFindPanel|e(tFindString|lectAll(InSelection)?))|Next|Previous)|FunctionKey)|tPagination|le(Read(No(SuchFileError|PermissionError)|CorruptFileError|In(validFileNameError|applicableStringEncodingError)|Un(supportedSchemeError|knownError))|HandlingPanel(CancelButton|OKButton)|NoSuchFileError|ErrorM(inimum|aximum)|Write(NoPermissionError|In(validFileNameError|applicableStringEncodingError)|OutOfSpaceError|Un(supportedSchemeError|knownError))|LockingError)|xedPitchFontMask)|2(1FunctionKey|7FunctionKey|2FunctionKey|8FunctionKey|3FunctionKey|9FunctionKey|4FunctionKey|5FunctionKey|FunctionKey|0FunctionKey|6FunctionKey)|o(nt(Mo(noSpaceTrait|dernSerifsClass)|BoldTrait|S(ymbolicClass|criptsClass|labSerifsClass|ansSerifClass)|C(o(ndensedTrait|llectionApplicationOnlyMask)|larendonSerifsClass)|TransitionalSerifsClass|I(ntegerAdvancementsRenderingMode|talicTrait)|O(ldStyleSerifsClass|rnamentalsClass)|DefaultRenderingMode|U(nknownClass|IOptimizedTrait)|Panel(S(hadowEffectModeMask|t(andardModesMask|rikethroughEffectModeMask)|izeModeMask)|CollectionModeMask|TextColorEffectModeMask|DocumentColorEffectModeMask|UnderlineEffectModeMask|FaceModeMask|All(ModesMask|EffectsModeMask))|ExpandedTrait|VerticalTrait|F(amilyClassMask|reeformSerifsClass)|Antialiased(RenderingMode|IntegerAdvancementsRenderingMode))|cusRing(Below|Type(None|Default|Exterior)|Only|Above)|urByteGlyphPacking|rm(attingError(M(inimum|aximum))?|FeedCharacter))|8FunctionKey|unction(ExpressionType|KeyMask)|3(1FunctionKey|2FunctionKey|3FunctionKey|4FunctionKey|5FunctionKey|FunctionKey|0FunctionKey)|9FunctionKey|4FunctionKey|P(RevertButton|S(ize(Title|Field)|etButton)|CurrentField|Preview(Button|Field))|l(oat(ingPointSamplesBitmapFormat|Type)|agsChanged(Mask)?)|axButton|5FunctionKey|6FunctionKey)|W(heelModeColorPanel|indow(s(NTOperatingSystem|CP125(1StringEncoding|2StringEncoding|3StringEncoding|4StringEncoding|0StringEncoding)|95(InterfaceStyle|OperatingSystem))|M(iniaturizeButton|ovedEventType)|Below|CloseButton|ToolbarButton|ZoomButton|Out|DocumentIconButton|ExposedEventType|Above)|orkspaceLaunch(NewInstance|InhibitingBackgroundOnly|Default|PreferringClassic|WithoutA(ctivation|ddingToRecents)|A(sync|nd(Hide(Others)?|Print)|llowingClassicStartup))|eek(day(CalendarUnit|OrdinalCalendarUnit)|CalendarUnit)|a(ntsBidiLevels|rningAlertStyle)|r(itingDirection(RightToLeft|Natural|LeftToRight)|apCalendarComponents))|L(i(stModeMatrix|ne(Moves(Right|Down|Up|Left)|B(order|reakBy(C(harWrapping|lipping)|Truncating(Middle|Head|Tail)|WordWrapping))|S(eparatorCharacter|weep(Right|Down|Up|Left))|ToBezierPathElement|DoesntMove|arSlider)|teralSearch|kePredicateOperatorType|ghterFontAction|braryDirectory)|ocalDomainMask|e(ssThan(Comparison|OrEqualTo(Comparison|PredicateOperatorType)|PredicateOperatorType)|ft(Mouse(D(own(Mask)?|ragged(Mask)?)|Up(Mask)?)|T(ext(Movement|Alignment)|ab(sBezelBorder|StopType))|ArrowFunctionKey))|a(yout(RightToLeft|NotDone|CantFit|OutOfGlyphs|Done|LeftToRight)|ndscapeOrientation)|ABColorSpaceModel)|A(sc(iiWithDoubleByteEUCGlyphPacking|endingPageOrder)|n(y(Type|PredicateModifier|EventMask)|choredSearch|imation(Blocking|Nonblocking(Threaded)?|E(ffect(DisappearingItemDefault|Poof)|ase(In(Out)?|Out))|Linear)|dPredicateType)|t(Bottom|tachmentCharacter|omicWrite|Top)|SCIIStringEncoding|d(obe(GB1CharacterCollection|CNS1CharacterCollection|Japan(1CharacterCollection|2CharacterCollection)|Korea1CharacterCollection)|dTraitFontAction|minApplicationDirectory)|uto(saveOperation|Pagination)|pp(lication(SupportDirectory|D(irectory|e(fined(Mask)?|legateReply(Success|Cancel|Failure)|activatedEventType))|ActivatedEventType)|KitDefined(Mask)?)|l(ternateKeyMask|pha(ShiftKeyMask|NonpremultipliedBitmapFormat|FirstBitmapFormat)|ert(SecondButtonReturn|ThirdButtonReturn|OtherReturn|DefaultReturn|ErrorReturn|FirstButtonReturn|AlternateReturn)|l(ScrollerParts|DomainsMask|PredicateModifier|LibrariesDirectory|ApplicationsDirectory))|rgument(sWrongScriptError|EvaluationScriptError)|bove(Bottom|Top)|WTEventType))\\b"
+ }
+ ],
+ "state_1": [
+ {
+ "include": "#interface_innards"
+ },
+ {
+ "token": "TODO",
+ "regex": "((@)end)\\b",
+ "next": "start"
+ }
+ ],
+ "state_2": [
+ {
+ "include": "#implementation_innards"
+ },
+ {
+ "token": "TODO",
+ "regex": "((@)end)\\b",
+ "next": "start"
+ }
+ ],
+ "state_3": [
+ {
+ "token": "constant.character.escape.objc",
+ "regex": "\\\\(\\\\|[abefnrtv'\"?]|[0-3]\\d{,2}|[4-7]\\d?|x[a-fA-F0-9]{,2}|u[a-fA-F0-9]{,4}|U[a-fA-F0-9]{,8})"
+ },
+ {
+ "token": "invalid.illegal.unknown-escape.objc",
+ "regex": "\\\\."
+ },
+ {
+ "token": "TODO",
+ "regex": "\"",
+ "next": "start"
+ }
+ ],
+ "state_4": [
+ {
+ "include": "#protocol_list"
+ },
+ {
+ "token": "TODO",
+ "regex": "(?<=>)",
+ "next": "start"
+ }
+ ],
+ "state_13": [
+ {
+ "token": "support.function.any-method.name-of-parameter.objc",
+ "regex": "\\b(?:[a-zA-Z_:][\\w]*)+"
+ },
+ {
+ "token": "TODO",
+ "regex": "(\\))",
+ "next": "start"
+ }
+ ]
+}
+};
+
+oop.inherits(ObjectiveCHighlightRules, TextHighlightRules);
+
+exports.ObjectiveCHighlightRules = ObjectiveCHighlightRules;
+});
\ No newline at end of file
diff --git a/tool/Theme.tmpl.css b/tool/Theme.tmpl.css
index f1579b60..765bea3c 100644
--- a/tool/Theme.tmpl.css
+++ b/tool/Theme.tmpl.css
@@ -1,3 +1,4 @@
+/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css */
.%cssClass% .ace_editor {
border: 2px solid rgb(159, 159, 159);
diff --git a/tool/theme.tmpl.js b/tool/theme.tmpl.js
index 0d980a3a..e1380df6 100644
--- a/tool/theme.tmpl.js
+++ b/tool/theme.tmpl.js
@@ -28,6 +28,8 @@
*
* ***** END LICENSE BLOCK ***** */
+// THIS FILE WAS AUTOGENERATED BY theme.tmpl.js
+
define(function(require, exports, module) {
exports.isDark = %isDark%;
diff --git a/tool/theme_mode.tmpl.js b/tool/theme_mode.tmpl.js
new file mode 100644
index 00000000..5d9cf21d
--- /dev/null
+++ b/tool/theme_mode.tmpl.js
@@ -0,0 +1,54 @@
+/* ***** BEGIN LICENSE BLOCK *****
+ * Distributed under the BSD license:
+ *
+ * Copyright (c) 2010, Ajax.org B.V.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the name of Ajax.org B.V. nor the
+ * names of its contributors may be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ *
+ * Contributor(s):
+ *
+ *
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+define(function(require, exports, module) {
+"use strict";
+
+var oop = require("../lib/oop");
+var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
+
+var %language%HighlightRules = function() {
+
+ // regexp must not have capturing parentheses. Use (?:) instead.
+ // regexps are ordered -> the first match is used
+
+ this.$rules =
+ %languageTokens%
+};
+
+oop.inherits(%language%HighlightRules, TextHighlightRules);
+
+exports.%language%HighlightRules = %language%HighlightRules;
+});
\ No newline at end of file
diff --git a/tool/tmlanguage.js b/tool/tmlanguage.js
new file mode 100755
index 00000000..008f5f0e
--- /dev/null
+++ b/tool/tmlanguage.js
@@ -0,0 +1,206 @@
+var fs = require("fs");
+var util = require("util");
+
+// for tracking token states
+var startState = { start: [] }, statesObj = { };
+
+var parseString = require("plist").parseString;
+function parseLanguage(languageXml, callback) {
+ parseString(languageXml, function(_, language) {
+ callback(language[0])
+ });
+}
+
+function logDebug(string, obj) {
+ console.log(string, obj);
+}
+
+String.prototype.splice = function( idx, rem, s ) {
+ return (this.slice(0,idx) + s + this.slice(idx + Math.abs(rem)));
+};
+
+String.prototype.replaceAt = function (index, char) {
+ return this.substr(0, index) + char + this.substr(index + 1);
+}
+
+function keyCount(obj) {
+ return Object.keys(obj).length;
+}
+
+/**
+
+Scrubbing is sometimes necessary, but there appears to be no
+automated way to do it...
+
+
+function cleanSingleCapture(match) {
+ // if there's a single "( )", screw that and make it "(?: )"
+ return match.replace("(", "(?:");
+}
+
+function cleanMultiCapture(match) {
+ // regexp will be a quoted string, so turn "\" into "\\"
+ var spaceFinderRegExp = new RegExp("\\\\s.| .", "g");
+ var m;
+ /*
+ essentially turns things like
+
+ \\s*(mixin) ([\\w\\-]+)\\s*(\\()
+
+ into
+
+ (\\s*mixin)( [\\w\\-]+)(\\s*\\()
+
+ so that mode parser stops complaining
+
+ while ((m = spaceFinderRegExp.exec(match)) != null) {
+ var idx = m.index;
+ var nextParenIdx = match.indexOf("(", idx);
+
+ if (nextParenIdx > idx) {
+ match = match.splice(idx, 0, "(").replaceAt(nextParenIdx + 1, '');
+ }
+ }
+
+ //console.log("match", match);
+ return match;
+}
+*/
+
+// stupid yet necessary function, to transform JSON id comments into real comments
+function restoreComments(objStr) {
+ return objStr.replace(/"\s+(\/\/.+)",/g, "\$1")
+}
+
+function assembleStateObjs(strState, pattern) {
+ var patterns = pattern.patterns;
+ var stateObj = {};
+
+ if (patterns) {
+ for (var p in patterns) {
+ stateObj = {}; // this is apparently necessary
+
+
+ if (patterns[p].include) {
+ stateObj.include = patterns[p].include;
+ }
+ else {
+ stateObj.token = patterns[p].name;
+ stateObj.regex = patterns[p].match;
+ }
+ statesObj[strState].push(stateObj);
+ }
+
+ stateObj = {};
+ stateObj.token = "TODO";
+ stateObj.regex = pattern.end;
+ stateObj.next = "start";
+ }
+ else {
+ stateObj.token = "TODO";
+ stateObj.regex = pattern.end;
+ stateObj.next = "start";
+
+ statesObj[strState].push(stateObj);
+
+ stateObj = {};
+ stateObj.token = "TODO";
+ stateObj.regex = ".+";
+ stateObj.next = strState;
+ }
+
+ return stateObj;
+}
+
+function extractPatterns(patterns) {
+ var state = 0;
+ patterns.forEach(function(pattern) {
+ state++;
+ var i = 1;
+ var tokenArray = [];
+ var tokenObj = {};
+ var stateObj = {};
+
+ if (pattern.comment) {
+ startState.start.push(" // " + pattern.comment);
+ }
+
+ // it needs a state transition
+ if (pattern.begin && pattern.end) {
+ var strState = "state_" + state;
+ if ( pattern.beginCaptures === undefined && pattern.endCaptures === undefined) {
+ tokenObj.token = pattern.captures;
+ }
+ else if (pattern.beginCaptures) {
+ tokenObj.token = pattern.beginCaptures;
+ }
+ else if (pattern.endCaptures) {
+ tokenObj.token = pattern.endCaptures;
+ }
+
+ statesObj[strState] = [ ];
+ statesObj[strState].push(assembleStateObjs(strState, pattern));
+
+ tokenObj.regex = pattern.begin;
+ tokenObj.next = strState;
+ startState.start.push(tokenObj);
+ }
+ else if( ( pattern.begin || pattern.end ) && !( pattern.begin && pattern.end ) ) {
+ logDebug("Somehow, there's pattern.begin or pattern.end--but not both?", pattern);
+ }
+
+ else if (pattern.captures) {
+ tokenObj.token = pattern.captures;
+ tokenObj.regex = pattern.match;
+
+ startState.start.push(tokenObj);
+ }
+
+ else if (pattern.match) {
+ tokenObj.token = pattern.name;
+ tokenObj.regex = pattern.match;
+
+ startState.start.push(tokenObj);
+ }
+ else {
+ logDebug("I've gone through every choice, and have no clue what this is:", pattern);
+ }
+ });
+
+ var resultingObj = startState;
+
+ for (var state in statesObj) {
+ resultingObj[state] = statesObj[state];
+ }
+
+ return restoreComments(JSON.stringify(resultingObj, null, " "));
+}
+
+function fillTemplate(template, replacements) {
+ return template.replace(/%(.+?)%/g, function(str, m) {
+ return replacements[m] || "";
+ });
+}
+
+var modeTemplate = fs.readFileSync(__dirname + "/theme_mode.tmpl.js", "utf8");
+
+function convertLanguage(name) {
+ var tmLanguage = fs.readFileSync(__dirname + "/" + name, "utf8");
+ parseLanguage(tmLanguage, function(language) {
+ var outFile = __dirname + "/../lib/ace/mode/" + language.name.replace(/-/g, "_").toLowerCase() + "_highlight_rules.js";
+ console.log("Converting " + name + " to " + outFile);
+
+ //console.log(util.inspect(language.patterns, false, 4));
+
+ var patterns = extractPatterns(language.patterns);
+ var lang = fillTemplate(modeTemplate, {
+ language: language.name.replace(/-/g, ""),
+ languageTokens: patterns
+ });
+
+ fs.writeFileSync(outFile, lang);
+ });
+}
+
+var tmLanguageFile = process.argv.splice(2)[0];
+convertLanguage(tmLanguageFile);
\ No newline at end of file