2023-01-16 22:26:34 +00:00
ace . define ( "ace/mode/elm_highlight_rules" , [ "require" , "exports" , "module" , "ace/lib/oop" , "ace/mode/text_highlight_rules" ] , function ( require , exports , module ) { // TODO check with https://github.com/deadfoxygrandpa/Elm.tmLanguage
2014-07-08 20:15:22 +00:00
"use strict" ;
var oop = require ( "../lib/oop" ) ;
var TextHighlightRules = require ( "./text_highlight_rules" ) . TextHighlightRules ;
2023-01-16 22:26:34 +00:00
var ElmHighlightRules = function ( ) {
2014-07-08 20:15:22 +00:00
var keywordMapper = this . createKeywordMapper ( {
2023-01-16 22:26:34 +00:00
"keyword" : "as|case|class|data|default|deriving|do|else|export|foreign|" +
2014-07-08 20:15:22 +00:00
"hiding|jsevent|if|import|in|infix|infixl|infixr|instance|let|" +
"module|newtype|of|open|then|type|where|_|port|\u03BB"
} , "identifier" ) ;
var escapeRe = /\\(\d+|['"\\&trnbvf])/ ;
var smallRe = /[a-z_]/ . source ;
var largeRe = /[A-Z]/ . source ;
2017-02-05 20:05:00 +00:00
var idRe = /[a-z_A-Z0-9']/ . source ;
2014-07-08 20:15:22 +00:00
this . $rules = {
start : [ {
2023-01-16 22:26:34 +00:00
token : "string.start" ,
regex : '"' ,
next : "string"
} , {
token : "string.character" ,
regex : "'(?:" + escapeRe . source + "|.)'?"
} , {
regex : /0(?:[xX][0-9A-Fa-f]+|[oO][0-7]+)|\d+(\.\d+)?([eE][-+]?\d*)?/ ,
token : "constant.numeric"
} , {
token : "comment" ,
regex : "--.*"
} , {
token : "keyword" ,
regex : /\.\.|\||:|=|\\|"|->|<-|\u2192/
} , {
token : "keyword.operator" ,
regex : /[-!#$%&*+.\/<=>?@\\^|~:\u03BB\u2192]+/
} , {
token : "operator.punctuation" ,
regex : /[,;`]/
} , {
regex : largeRe + idRe + "+\\.?" ,
token : function ( value ) {
if ( value [ value . length - 1 ] == "." )
return "entity.name.function" ;
return "constant.language" ;
}
} , {
regex : "^" + smallRe + idRe + "+" ,
token : function ( value ) {
return "constant.language" ;
}
} , {
token : keywordMapper ,
regex : "[\\w\\xff-\\u218e\\u2455-\\uffff]+\\b"
} , {
regex : "{-#?" ,
token : "comment.start" ,
onMatch : function ( value , currentState , stack ) {
this . next = value . length == 2 ? "blockComment" : "docComment" ;
return this . token ;
}
} , {
token : "variable.language" ,
regex : /\[markdown\|/ ,
next : "markdown"
} , {
token : "paren.lparen" ,
regex : /[\[({]/
} , {
token : "paren.rparen" ,
regex : /[\])}]/
} ] ,
2014-07-08 20:15:22 +00:00
markdown : [ {
2023-01-16 22:26:34 +00:00
regex : /\|\]/ ,
next : "start"
} , {
defaultToken : "string"
} ] ,
2014-07-08 20:15:22 +00:00
blockComment : [ {
2023-01-16 22:26:34 +00:00
regex : "{-" ,
token : "comment.start" ,
push : "blockComment"
} , {
regex : "-}" ,
token : "comment.end" ,
next : "pop"
} , {
defaultToken : "comment"
} ] ,
2014-07-08 20:15:22 +00:00
docComment : [ {
2023-01-16 22:26:34 +00:00
regex : "{-" ,
token : "comment.start" ,
push : "docComment"
} , {
regex : "-}" ,
token : "comment.end" ,
next : "pop"
} , {
defaultToken : "doc.comment"
} ] ,
2014-07-08 20:15:22 +00:00
string : [ {
2023-01-16 22:26:34 +00:00
token : "constant.language.escape" ,
regex : escapeRe
} , {
token : "text" ,
regex : /\\(\s|$)/ ,
next : "stringGap"
} , {
token : "string.end" ,
regex : '"' ,
next : "start"
} , {
defaultToken : "string"
} ] ,
2014-07-08 20:15:22 +00:00
stringGap : [ {
2023-01-16 22:26:34 +00:00
token : "text" ,
regex : /\\/ ,
next : "string"
} , {
token : "error" ,
regex : "" ,
next : "start"
} ]
2014-07-08 20:15:22 +00:00
} ;
this . normalizeRules ( ) ;
} ;
oop . inherits ( ElmHighlightRules , TextHighlightRules ) ;
exports . ElmHighlightRules = ElmHighlightRules ;
2023-01-16 22:26:34 +00:00
} ) ;
2014-07-08 20:15:22 +00:00
2023-01-16 22:26:34 +00:00
ace . define ( "ace/mode/folding/cstyle" , [ "require" , "exports" , "module" , "ace/lib/oop" , "ace/range" , "ace/mode/folding/fold_mode" ] , function ( require , exports , module ) { "use strict" ;
2014-07-08 20:15:22 +00:00
var oop = require ( "../../lib/oop" ) ;
var Range = require ( "../../range" ) . Range ;
var BaseFoldMode = require ( "./fold_mode" ) . FoldMode ;
2023-01-16 22:26:34 +00:00
var FoldMode = exports . FoldMode = function ( commentRegex ) {
2014-07-08 20:15:22 +00:00
if ( commentRegex ) {
2023-01-16 22:26:34 +00:00
this . foldingStartMarker = new RegExp ( this . foldingStartMarker . source . replace ( /\|[^|]*?$/ , "|" + commentRegex . start ) ) ;
this . foldingStopMarker = new RegExp ( this . foldingStopMarker . source . replace ( /\|[^|]*?$/ , "|" + commentRegex . end ) ) ;
2014-07-08 20:15:22 +00:00
}
} ;
oop . inherits ( FoldMode , BaseFoldMode ) ;
2023-01-16 22:26:34 +00:00
( function ( ) {
2020-04-14 12:14:48 +00:00
this . foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/ ;
this . foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/ ;
2023-01-16 22:26:34 +00:00
this . singleLineBlockCommentRe = /^\s*(\/\*).*\*\/\s*$/ ;
2014-07-08 20:15:22 +00:00
this . tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/ ;
2015-11-19 16:37:40 +00:00
this . startRegionRe = /^\s*(\/\*|\/\/)#?region\b/ ;
2014-07-08 20:15:22 +00:00
this . _getFoldWidgetBase = this . getFoldWidget ;
2023-01-16 22:26:34 +00:00
this . getFoldWidget = function ( session , foldStyle , row ) {
2014-07-08 20:15:22 +00:00
var line = session . getLine ( row ) ;
if ( this . singleLineBlockCommentRe . test ( line ) ) {
if ( ! this . startRegionRe . test ( line ) && ! this . tripleStarBlockCommentRe . test ( line ) )
return "" ;
}
var fw = this . _getFoldWidgetBase ( session , foldStyle , row ) ;
if ( ! fw && this . startRegionRe . test ( line ) )
return "start" ; // lineCommentRegionStart
return fw ;
} ;
2023-01-16 22:26:34 +00:00
this . getFoldWidgetRange = function ( session , foldStyle , row , forceMultiline ) {
2014-07-08 20:15:22 +00:00
var line = session . getLine ( row ) ;
if ( this . startRegionRe . test ( line ) )
return this . getCommentRegionBlock ( session , line , row ) ;
var match = line . match ( this . foldingStartMarker ) ;
if ( match ) {
var i = match . index ;
if ( match [ 1 ] )
return this . openingBracketBlock ( session , match [ 1 ] , row , i ) ;
var range = session . getCommentFoldRange ( row , i + match [ 0 ] . length , 1 ) ;
if ( range && ! range . isMultiLine ( ) ) {
if ( forceMultiline ) {
range = this . getSectionRange ( session , row ) ;
2023-01-16 22:26:34 +00:00
}
else if ( foldStyle != "all" )
2014-07-08 20:15:22 +00:00
range = null ;
}
return range ;
}
if ( foldStyle === "markbegin" )
return ;
var match = line . match ( this . foldingStopMarker ) ;
if ( match ) {
var i = match . index + match [ 0 ] . length ;
if ( match [ 1 ] )
return this . closingBracketBlock ( session , match [ 1 ] , row , i ) ;
return session . getCommentFoldRange ( row , i , - 1 ) ;
}
} ;
2023-01-16 22:26:34 +00:00
this . getSectionRange = function ( session , row ) {
2014-07-08 20:15:22 +00:00
var line = session . getLine ( row ) ;
var startIndent = line . search ( /\S/ ) ;
var startRow = row ;
var startColumn = line . length ;
row = row + 1 ;
var endRow = row ;
var maxRow = session . getLength ( ) ;
while ( ++ row < maxRow ) {
line = session . getLine ( row ) ;
var indent = line . search ( /\S/ ) ;
if ( indent === - 1 )
continue ;
2023-01-16 22:26:34 +00:00
if ( startIndent > indent )
2014-07-08 20:15:22 +00:00
break ;
var subRange = this . getFoldWidgetRange ( session , "all" , row ) ;
if ( subRange ) {
if ( subRange . start . row <= startRow ) {
break ;
2023-01-16 22:26:34 +00:00
}
else if ( subRange . isMultiLine ( ) ) {
2014-07-08 20:15:22 +00:00
row = subRange . end . row ;
2023-01-16 22:26:34 +00:00
}
else if ( startIndent == indent ) {
2014-07-08 20:15:22 +00:00
break ;
}
}
endRow = row ;
}
return new Range ( startRow , startColumn , endRow , session . getLine ( endRow ) . length ) ;
} ;
2023-01-16 22:26:34 +00:00
this . getCommentRegionBlock = function ( session , line , row ) {
2014-07-08 20:15:22 +00:00
var startColumn = line . search ( /\s*$/ ) ;
var maxRow = session . getLength ( ) ;
var startRow = row ;
2015-11-19 16:37:40 +00:00
var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/ ;
2014-07-08 20:15:22 +00:00
var depth = 1 ;
while ( ++ row < maxRow ) {
line = session . getLine ( row ) ;
var m = re . exec ( line ) ;
2023-01-16 22:26:34 +00:00
if ( ! m )
continue ;
if ( m [ 1 ] )
depth -- ;
else
depth ++ ;
if ( ! depth )
break ;
2014-07-08 20:15:22 +00:00
}
var endRow = row ;
if ( endRow > startRow ) {
return new Range ( startRow , startColumn , endRow , line . length ) ;
}
} ;
} ) . call ( FoldMode . prototype ) ;
} ) ;
2023-01-16 22:26:34 +00:00
ace . define ( "ace/mode/elm" , [ "require" , "exports" , "module" , "ace/lib/oop" , "ace/mode/text" , "ace/mode/elm_highlight_rules" , "ace/mode/folding/cstyle" ] , function ( require , exports , module ) { / *
THIS FILE WAS AUTOGENERATED BY mode . tmpl . js
* /
2014-07-08 20:15:22 +00:00
"use strict" ;
var oop = require ( "../lib/oop" ) ;
var TextMode = require ( "./text" ) . Mode ;
var HighlightRules = require ( "./elm_highlight_rules" ) . ElmHighlightRules ;
var FoldMode = require ( "./folding/cstyle" ) . FoldMode ;
2023-01-16 22:26:34 +00:00
var Mode = function ( ) {
2014-07-08 20:15:22 +00:00
this . HighlightRules = HighlightRules ;
this . foldingRules = new FoldMode ( ) ;
2017-02-05 20:05:00 +00:00
this . $behaviour = this . $defaultBehaviour ;
2014-07-08 20:15:22 +00:00
} ;
oop . inherits ( Mode , TextMode ) ;
2023-01-16 22:26:34 +00:00
( function ( ) {
2014-07-08 20:15:22 +00:00
this . lineCommentStart = "--" ;
2023-01-16 22:26:34 +00:00
this . blockComment = { start : "{-" , end : "-}" , nestable : true } ;
2014-07-08 20:15:22 +00:00
this . $id = "ace/mode/elm" ;
} ) . call ( Mode . prototype ) ;
exports . Mode = Mode ;
2023-01-16 22:26:34 +00:00
2020-04-14 12:14:48 +00:00
} ) ; ( function ( ) {
ace . require ( [ "ace/mode/elm" ] , function ( m ) {
if ( typeof module == "object" && typeof exports == "object" && module ) {
module . exports = m ;
}
} ) ;
} ) ( ) ;