aboutsummaryrefslogtreecommitdiffstats
path: root/client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js
diff options
context:
space:
mode:
authorLiam Fallon <liam.fallon@est.tech>2020-08-18 10:18:13 +0000
committerGerrit Code Review <gerrit@onap.org>2020-08-18 10:18:13 +0000
commit3ea290d6a99baba085a3db94a06bfb22c22f4817 (patch)
tree955c5ce96d79f1810d753dec54ef0f58773dea14 /client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js
parent6c3192ce8ef5283b97da0853e39a0d571f6bdd7b (diff)
parent8f2301aba41bf1ccaf661e8eb4929b077d6517f3 (diff)
Merge "Remove apex policy editor gui"
Diffstat (limited to 'client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js')
-rw-r--r--client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js b/client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js
deleted file mode 100644
index e6306b0c3..000000000
--- a/client/client-editor/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js
+++ /dev/null
@@ -1,45 +0,0 @@
-editAreaLoader.load_syntax["brainfuck"] = {
- 'DISPLAY_NAME' : 'Brainfuck'
- ,'COMMENT_SINGLE' : {}
- ,'COMMENT_MULTI' : {}
- ,'QUOTEMARKS' : {}
- ,'KEYWORD_CASE_SENSITIVE' : true
- ,'OPERATORS' :[
- '+', '-'
- ]
- ,'DELIMITERS' :[
- '[', ']'
- ]
- ,'REGEXPS' : {
- 'bfispis' : {
- 'search' : '()(\\.)()'
- ,'class' : 'bfispis'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- ,'bfupis' : {
- 'search' : '()(\\,)()'
- ,'class' : 'bfupis'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- ,'bfmemory' : {
- 'search' : '()([<>])()'
- ,'class' : 'bfmemory'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- }
- ,'STYLES' : {
- 'COMMENTS': 'color: #AAAAAA;'
- ,'QUOTESMARKS': 'color: #6381F8;'
- ,'OPERATORS' : 'color: #88AA00;'
- ,'DELIMITERS' : 'color: #00C138;'
- ,'REGEXPS' : {
- 'bfispis' : 'color: #EE0000;'
- ,'bfupis' : 'color: #4455ee;'
- ,'bfmemory' : 'color: #DD00DD;'
- }
- }
-};
-