1 // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 // Distributed under an MIT license: http://codemirror.net/LICENSE
5 * Link to the project's GitHub page:
6 * https://github.com/pickhardt/coffeescript-codemirror-mode
9 if (typeof exports
== "object" && typeof module
== "object") // CommonJS
10 mod(require("../../lib/codemirror"));
11 else if (typeof define
== "function" && define
.amd
) // AMD
12 define(["../../lib/codemirror"], mod
);
13 else // Plain browser env
15 })(function(CodeMirror
) {
18 CodeMirror
.defineMode("coffeescript", function(conf
) {
19 var ERRORCLASS
= "error";
21 function wordRegexp(words
) {
22 return new RegExp("^((" + words
.join(")|(") + "))\\b");
25 var operators
= /^(?:->|=>|\+[+=]?|-[\-=]?|\*[\*=]?|\/[\/=]?|[=!]=|<[><]?=?|>>?=?|%=?|&=?|\|=?|\^=?|\~|!|\?)/;
26 var delimiters
= /^(?:[()\[\]{},:`=;]|\.\.?\.?)/;
27 var identifiers
= /^[_A-Za-z$][_A-Za-z$0-9]*/;
28 var properties
= /^(@|this\.)[_A-Za-z$][_A-Za-z$0-9]*/;
30 var wordOperators
= wordRegexp(["and", "or", "not",
32 "instanceof", "typeof"]);
33 var indentKeywords
= ["for", "while", "loop", "if", "unless", "else",
34 "switch", "try", "catch", "finally", "class"];
35 var commonKeywords
= ["break", "by", "continue", "debugger", "delete",
36 "do", "in", "of", "new", "return", "then",
37 "this", "throw", "when", "until"];
39 var keywords
= wordRegexp(indentKeywords
.concat(commonKeywords
));
41 indentKeywords
= wordRegexp(indentKeywords
);
44 var stringPrefixes
= /^('{3}|\"{3}|['\"])/;
45 var regexPrefixes
= /^(\/{3}|\/)/;
46 var commonConstants
= ["Infinity", "NaN", "undefined", "null", "true", "false", "on", "off", "yes", "no"];
47 var constants
= wordRegexp(commonConstants
);
50 function tokenBase(stream
, state
) {
51 // Handle scope changes
53 if (state
.scope
.align
=== null) state
.scope
.align
= false;
54 var scopeOffset
= state
.scope
.offset
;
55 if (stream
.eatSpace()) {
56 var lineOffset
= stream
.indentation();
57 if (lineOffset
> scopeOffset
&& state
.scope
.type
== "coffee") {
59 } else if (lineOffset
< scopeOffset
) {
64 if (scopeOffset
> 0) {
65 dedent(stream
, state
);
69 if (stream
.eatSpace()) {
73 var ch
= stream
.peek();
75 // Handle docco title comment (single line)
76 if (stream
.match("####")) {
81 // Handle multi line comments
82 if (stream
.match("###")) {
83 state
.tokenize
= longComment
;
84 return state
.tokenize(stream
, state
);
87 // Single line comment
93 // Handle number literals
94 if (stream
.match(/^-?[0-9\.]/, false)) {
95 var floatLiteral
= false;
97 if (stream
.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)) {
100 if (stream
.match(/^-?\d+\.\d*/)) {
103 if (stream
.match(/^-?\.\d+/)) {
108 // prevent from getting extra . on 1..
109 if (stream
.peek() == "."){
115 var intLiteral
= false;
117 if (stream
.match(/^-?0x[0-9a-f]+/i)) {
121 if (stream
.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)) {
124 // Zero by itself with no other piece of number.
125 if (stream
.match(/^-?0(?![\dx])/i)) {
134 if (stream
.match(stringPrefixes
)) {
135 state
.tokenize
= tokenFactory(stream
.current(), false, "string");
136 return state
.tokenize(stream
, state
);
138 // Handle regex literals
139 if (stream
.match(regexPrefixes
)) {
140 if (stream
.current() != "/" || stream
.match(/^.*\//, false)) { // prevent highlight of division
141 state
.tokenize
= tokenFactory(stream
.current(), true, "string-2");
142 return state
.tokenize(stream
, state
);
148 // Handle operators and delimiters
149 if (stream
.match(operators
) || stream
.match(wordOperators
)) {
152 if (stream
.match(delimiters
)) {
153 return "punctuation";
156 if (stream
.match(constants
)) {
160 if (stream
.match(keywords
)) {
164 if (stream
.match(identifiers
)) {
168 if (stream
.match(properties
)) {
172 // Handle non-detected items
177 function tokenFactory(delimiter
, singleline
, outclass
) {
178 return function(stream
, state
) {
179 while (!stream
.eol()) {
180 stream
.eatWhile(/[^'"\/\\]/);
181 if (stream
.eat("\\")) {
183 if (singleline
&& stream
.eol()) {
186 } else if (stream
.match(delimiter
)) {
187 state
.tokenize
= tokenBase
;
190 stream
.eat(/['"\/]/);
194 if (conf
.mode
.singleLineStringErrors
) {
195 outclass
= ERRORCLASS
;
197 state
.tokenize
= tokenBase
;
204 function longComment(stream
, state
) {
205 while (!stream
.eol()) {
206 stream
.eatWhile(/[^#]/);
207 if (stream
.match("###")) {
208 state
.tokenize
= tokenBase
;
211 stream
.eatWhile("#");
216 function indent(stream
, state
, type
) {
217 type
= type
|| "coffee";
218 var offset
= 0, align
= false, alignOffset
= null;
219 for (var scope
= state
.scope
; scope
; scope
= scope
.prev
) {
220 if (scope
.type
=== "coffee") {
221 offset
= scope
.offset
+ conf
.indentUnit
;
225 if (type
!== "coffee") {
227 alignOffset
= stream
.column() + stream
.current().length
;
228 } else if (state
.scope
.align
) {
229 state
.scope
.align
= false;
236 alignOffset
: alignOffset
240 function dedent(stream
, state
) {
241 if (!state
.scope
.prev
) return;
242 if (state
.scope
.type
=== "coffee") {
243 var _indent
= stream
.indentation();
245 for (var scope
= state
.scope
; scope
; scope
= scope
.prev
) {
246 if (_indent
=== scope
.offset
) {
254 while (state
.scope
.prev
&& state
.scope
.offset
!== _indent
) {
255 state
.scope
= state
.scope
.prev
;
259 state
.scope
= state
.scope
.prev
;
264 function tokenLexer(stream
, state
) {
265 var style
= state
.tokenize(stream
, state
);
266 var current
= stream
.current();
268 // Handle "." connected identifiers
269 if (current
=== ".") {
270 style
= state
.tokenize(stream
, state
);
271 current
= stream
.current();
272 if (/^\.[\w$]+$/.test(current
)) {
279 // Handle scope changes.
280 if (current
=== "return") {
283 if (((current
=== "->" || current
=== "=>") &&
286 || style
=== "indent") {
287 indent(stream
, state
);
289 var delimiter_index
= "[({".indexOf(current
);
290 if (delimiter_index
!== -1) {
291 indent(stream
, state
, "])}".slice(delimiter_index
, delimiter_index
+1));
293 if (indentKeywords
.exec(current
)){
294 indent(stream
, state
);
296 if (current
== "then"){
297 dedent(stream
, state
);
301 if (style
=== "dedent") {
302 if (dedent(stream
, state
)) {
306 delimiter_index
= "])}".indexOf(current
);
307 if (delimiter_index
!== -1) {
308 while (state
.scope
.type
== "coffee" && state
.scope
.prev
)
309 state
.scope
= state
.scope
.prev
;
310 if (state
.scope
.type
== current
)
311 state
.scope
= state
.scope
.prev
;
313 if (state
.dedent
> 0 && stream
.eol() && state
.scope
.type
== "coffee") {
314 if (state
.scope
.prev
) state
.scope
= state
.scope
.prev
;
322 startState: function(basecolumn
) {
325 scope
: {offset
:basecolumn
|| 0, type
:"coffee", prev
: null, align
: false},
332 token: function(stream
, state
) {
333 var fillAlign
= state
.scope
.align
=== null && state
.scope
;
334 if (fillAlign
&& stream
.sol()) fillAlign
.align
= false;
336 var style
= tokenLexer(stream
, state
);
337 if (fillAlign
&& style
&& style
!= "comment") fillAlign
.align
= true;
339 state
.lastToken
= {style
:style
, content
: stream
.current()};
341 if (stream
.eol() && stream
.lambda
) {
342 state
.lambda
= false;
348 indent: function(state
, text
) {
349 if (state
.tokenize
!= tokenBase
) return 0;
350 var scope
= state
.scope
;
351 var closer
= text
&& "])}".indexOf(text
.charAt(0)) > -1;
352 if (closer
) while (scope
.type
== "coffee" && scope
.prev
) scope
= scope
.prev
;
353 var closes
= closer
&& scope
.type
=== text
.charAt(0);
355 return scope
.alignOffset
- (closes
? 1 : 0);
357 return (closes
? scope
.prev
: scope
).offset
;
366 CodeMirror
.defineMIME("text/x-coffeescript", "coffeescript");