-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbrush.js
60 lines (56 loc) · 1.44 KB
/
brush.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
var BrushBase = require('brush-base');
var regexLib = require('syntaxhighlighter-regex').commonRegExp;
function Brush() {
var keywords = 'abstract assert boolean break byte case catch char class const ' +
'continue default do double else enum extends ' +
'false final finally float for goto if implements import ' +
'instanceof int interface long native new null ' +
'package private protected public return ' +
'short static strictfp super switch synchronized this throw throws true ' +
'transient try void volatile while';
this.regexList = [
{
regex: regexLib.singleLineCComments,
css: 'comments'
},
{
regex: /\/\*([^\*][\s\S]*?)?\*\//gm,
css: 'comments'
},
{
regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm,
css: 'preprocessor'
},
{
regex: regexLib.doubleQuotedString,
css: 'string'
},
{
regex: regexLib.singleQuotedString,
css: 'string'
},
{
regex: /\b([\d]+(\.[\d]+)?f?|[\d]+l?|0x[a-f0-9]+)\b/gi,
css: 'value'
},
{
regex: /(?!\@interface\b)\@[\$\w]+\b/g,
css: 'color1'
},
{
regex: /\@interface\b/g,
css: 'color2'
},
{
regex: new RegExp(this.getKeywords(keywords), 'gm'),
css: 'keyword'
}
];
this.forHtmlScript({
left: /(<|<)%[@!=]?/g,
right: /%(>|>)/g
});
};
Brush.prototype = new BrushBase();
Brush.aliases = ['java'];
module.exports = Brush;