Skip to content

Commit 4312412

Browse files
authoredDec 18, 2021
Verilog: Use standard tokens correctly (#3261)
1 parent deed35e commit 4312412

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed
 

‎components/prism-verilog.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
Prism.languages.verilog = {
2-
'comment': /\/\/.*|\/\*[\s\S]*?\*\//,
2+
'comment': {
3+
pattern: /\/\/.*|\/\*[\s\S]*?\*\//,
4+
greedy: true
5+
},
36
'string': {
47
pattern: /"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
58
greedy: true
69
},
7-
// support for any kernel function (ex: $display())
8-
'property': /\B\$\w+\b/,
10+
'kernel-function': {
11+
// support for any kernel function (ex: $display())
12+
pattern: /\B\$\w+\b/,
13+
alias: 'property'
14+
},
915
// support for user defined constants (ex: `define)
1016
'constant': /\B`\w+\b/,
1117
'function': /\b\w+(?=\()/,
1218
// support for verilog and system verilog keywords
1319
'keyword': /\b(?:alias|and|assert|assign|assume|automatic|before|begin|bind|bins|binsof|bit|break|buf|bufif0|bufif1|byte|case|casex|casez|cell|chandle|class|clocking|cmos|config|const|constraint|context|continue|cover|covergroup|coverpoint|cross|deassign|default|defparam|design|disable|dist|do|edge|else|end|endcase|endclass|endclocking|endconfig|endfunction|endgenerate|endgroup|endinterface|endmodule|endpackage|endprimitive|endprogram|endproperty|endsequence|endspecify|endtable|endtask|enum|event|expect|export|extends|extern|final|first_match|for|force|foreach|forever|fork|forkjoin|function|generate|genvar|highz0|highz1|if|iff|ifnone|ignore_bins|illegal_bins|import|incdir|include|initial|inout|input|inside|instance|int|integer|interface|intersect|join|join_any|join_none|large|liblist|library|local|localparam|logic|longint|macromodule|matches|medium|modport|module|nand|negedge|new|nmos|nor|noshowcancelled|not|notif0|notif1|null|or|output|package|packed|parameter|pmos|posedge|primitive|priority|program|property|protected|pull0|pull1|pulldown|pullup|pulsestyle_ondetect|pulsestyle_onevent|pure|rand|randc|randcase|randsequence|rcmos|real|realtime|ref|reg|release|repeat|return|rnmos|rpmos|rtran|rtranif0|rtranif1|scalared|sequence|shortint|shortreal|showcancelled|signed|small|solve|specify|specparam|static|string|strong0|strong1|struct|super|supply0|supply1|table|tagged|task|this|throughout|time|timeprecision|timeunit|tran|tranif0|tranif1|tri|tri0|tri1|triand|trior|trireg|type|typedef|union|unique|unsigned|use|uwire|var|vectored|virtual|void|wait|wait_order|wand|weak0|weak1|while|wildcard|wire|with|within|wor|xnor|xor)\b/,
1420
// bold highlighting for all verilog and system verilog logic blocks
15-
'important': /\b(?:always|always_comb|always_ff|always_latch)\b ?@?/,
21+
'important': /\b(?:always|always_comb|always_ff|always_latch)\b(?: *@)?/,
1622
// support for time ticks, vectors, and real numbers
1723
'number': /\B##?\d+|(?:\b\d+)?'[odbh] ?[\da-fzx_?]+|\b(?:\d*[._])?\d+(?:e[-+]?\d+)?/i,
1824
'operator': /[-+{}^~%*\/?=!<>&|]+/,

‎components/prism-verilog.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
$display()
2-
3-
----------------------------------------------------
4-
5-
[
6-
["property", "$display"], ["punctuation", "("], ["punctuation", ")"]
7-
]
8-
9-
----------------------------------------------------
10-
11-
Checks for kernel functions.
1+
$display()
2+
3+
----------------------------------------------------
4+
5+
[
6+
["kernel-function", "$display"],
7+
["punctuation", "("],
8+
["punctuation", ")"]
9+
]
10+
11+
----------------------------------------------------
12+
13+
Checks for kernel functions.

0 commit comments

Comments
 (0)
Please sign in to comment.