-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Added support for CFScript #2771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
febbf59
Added support for CFScript
mjclemente 6dbd611
Reorder language list
mjclemente ff35827
Add cfc alias to cfscript language definition
mjclemente 97fe774
Correct unused capturing groups
mjclemente f7d0c19
Resolve polynomial backtracking error
mjclemente 99164da
Rebuild prism
mjclemente 86e438e
Reorder pattern and remove unnecessary 'global'
mjclemente 9ae65c7
Retarget insertBefore and relocate scope language feature
mjclemente 8ae1025
Simplify patterns
mjclemente 61b4ac5
Rebuild prism
mjclemente 7695c65
Rename to CFScript and add link to docs
mjclemente File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.