-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f79b0ee
commit b0a6ec8
Showing
15 changed files
with
467 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// https://cfdocs.org/script | ||
Prism.languages.cfscript = Prism.languages.extend('clike', { | ||
'comment': [ | ||
{ | ||
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/, | ||
lookbehind: true, | ||
inside: { | ||
'annotation': { | ||
pattern: /(?:^|[^.])@[\w\.]+/, | ||
alias: 'punctuation' | ||
} | ||
} | ||
}, | ||
{ | ||
pattern: /(^|[^\\:])\/\/.*/, | ||
lookbehind: true, | ||
greedy: true | ||
} | ||
], | ||
'keyword': /\b(?:abstract|break|catch|component|continue|default|do|else|extends|final|finally|for|function|if|in|include|package|private|property|public|remote|required|rethrow|return|static|switch|throw|try|var|while|xml)\b(?!\s*\=)/, | ||
'operator': [ | ||
/\+\+|--|&&|\|\||::|=>|[!=]==|<=?|>=?|[-+*/%&|^!=<>]=?|\?(?:\.|:)?|[?:]/, | ||
/\b(?:and|contains|eq|equal|eqv|gt|gte|imp|is|lt|lte|mod|not|or|xor)\b/ | ||
], | ||
'scope': { | ||
pattern: /\b(?:application|arguments|cgi|client|cookie|local|session|super|this|variables)\b/, | ||
alias: 'global' | ||
}, | ||
'type': { | ||
pattern: /\b(?:any|array|binary|boolean|date|guid|numeric|query|string|struct|uuid|void|xml)\b/, | ||
alias: 'builtin' | ||
} | ||
}); | ||
|
||
Prism.languages.insertBefore('cfscript', 'keyword', { | ||
// This must be declared before keyword because we use "function" inside the lookahead | ||
'function-variable': { | ||
pattern: /[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/, | ||
alias: 'function' | ||
} | ||
}); | ||
|
||
delete Prism.languages.cfscript['class-name']; | ||
Prism.languages.cfc = Prism.languages['cfscript']; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<h2>Comments</h2> | ||
<pre><code>// This is a comment | ||
|
||
/* This is a comment | ||
on multiple lines */ | ||
|
||
/** | ||
* This is a Javadoc style comment | ||
* | ||
* @hint This is an annotation | ||
*/ | ||
</code></pre> | ||
|
||
<h2>Functions</h2> | ||
<pre><code>public boolean function myFunc(required any arg) { | ||
return true; | ||
}</code></pre> | ||
|
||
<h2>Full example</h2> | ||
<pre><code>component accessors="true" { | ||
property type="string" name="prop1" default=""; | ||
property string prop2; | ||
function init(){ | ||
this.prop3 = 12; | ||
return this; | ||
} | ||
|
||
/** | ||
* @hint Annotations supported | ||
* @foo.hint | ||
*/ | ||
public any function build( required foo, color="blue", boolean bar=true ){ | ||
arguments.foo = { | ||
'name' : "something", | ||
test = true | ||
} | ||
var foobar = function( required string baz, x=true, y=false ){ | ||
return "bar!"; | ||
}; | ||
return foo; | ||
} | ||
} | ||
</code></pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.