App-Mxpress-PDF
view release on metacpan or search on metacpan
public/javascripts/ace/mode-prolog.js view on Meta::CPAN
define("ace/mode/prolog_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
var PrologHighlightRules = function() {
this.$rules = { start:
[ { include: '#comment' },
{ include: '#basic_fact' },
{ include: '#rule' },
{ include: '#directive' },
{ include: '#fact' } ],
'#atom':
[ { token: 'constant.other.atom.prolog',
regex: '\\b[a-z][a-zA-Z0-9_]*\\b' },
{ token: 'constant.numeric.prolog',
regex: '-?\\d+(?:\\.\\d+)?' },
{ include: '#string' } ],
'#basic_elem':
[ { include: '#comment' },
{ include: '#statement' },
{ include: '#constants' },
{ include: '#operators' },
{ include: '#builtins' },
{ include: '#list' },
{ include: '#atom' },
{ include: '#variable' } ],
'#basic_fact':
[ { token:
[ 'entity.name.function.fact.basic.prolog',
'punctuation.end.fact.basic.prolog' ],
regex: '([a-z]\\w*)(\\.)' } ],
'#builtins':
[ { token: 'support.function.builtin.prolog',
regex: '\\b(?:abolish|abort|ancestors|arg|ascii|assert[az]|atom(?:ic)?|body|char|close|conc|concat|consult|define|definition|dynamic|dump|fail|file|free|free_proc|functor|getc|goal|halt|head|head|integer|length|listing|match_args|member|ne...
'#comment':
[ { token:
[ 'punctuation.definition.comment.prolog',
'comment.line.percentage.prolog' ],
regex: '(%)(.*$)' },
{ token: 'punctuation.definition.comment.prolog',
regex: '/\\*',
push:
[ { token: 'punctuation.definition.comment.prolog',
regex: '\\*/',
next: 'pop' },
{ defaultToken: 'comment.block.prolog' } ] } ],
'#constants':
[ { token: 'constant.language.prolog',
regex: '\\b(?:true|false|yes|no)\\b' } ],
'#directive':
[ { token: 'keyword.operator.directive.prolog',
regex: ':-',
push:
[ { token: 'meta.directive.prolog', regex: '\\.', next: 'pop' },
{ include: '#comment' },
{ include: '#statement' },
{ defaultToken: 'meta.directive.prolog' } ] } ],
'#expr':
[ { include: '#comments' },
{ token: 'meta.expression.prolog',
regex: '\\(',
push:
[ { token: 'meta.expression.prolog', regex: '\\)', next: 'pop' },
{ include: '#expr' },
{ defaultToken: 'meta.expression.prolog' } ] },
{ token: 'keyword.control.cutoff.prolog', regex: '!' },
{ token: 'punctuation.control.and.prolog', regex: ',' },
{ token: 'punctuation.control.or.prolog', regex: ';' },
{ include: '#basic_elem' } ],
'#fact':
[ { token:
[ 'entity.name.function.fact.prolog',
'punctuation.begin.fact.parameters.prolog' ],
regex: '([a-z]\\w*)(\\()(?!.*:-)',
push:
[ { token:
[ 'punctuation.end.fact.parameters.prolog',
'punctuation.end.fact.prolog' ],
regex: '(\\))(\\.?)',
next: 'pop' },
{ include: '#parameter' },
{ defaultToken: 'meta.fact.prolog' } ] } ],
'#list':
[ { token: 'punctuation.begin.list.prolog',
regex: '\\[(?=.*\\])',
push:
[ { token: 'punctuation.end.list.prolog',
regex: '\\]',
next: 'pop' },
{ include: '#comment' },
{ token: 'punctuation.separator.list.prolog', regex: ',' },
{ token: 'punctuation.concat.list.prolog',
regex: '\\|',
push:
[ { token: 'meta.list.concat.prolog',
regex: '(?=\\s*\\])',
next: 'pop' },
{ include: '#basic_elem' },
( run in 0.982 second using v1.01-cache-2.11-cpan-39bf76dae61 )