Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Side by Side Diff: lib/src/prism/tests/languages/vhdl/function_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Bit_vector(7 downto 0)
2 DataBus(7)
3 function BOOL_TO_SL(X : boolean)
4 function "*"(a : resistance; b : capacitance)
5
6 ----------------------------------------------------
7
8 [
9 ["function", "Bit_vector"],
10 ["punctuation", "("], ["number", "7"],
11 ["keyword", "downto"], ["number", "0"], ["punctuation", ")"],
12
13 ["function", "DataBus"],
14 ["punctuation", "("], ["number", "7"], ["punctuation", ")"],
15
16 ["keyword", "function"], ["function", "BOOL_TO_SL"],
17 ["punctuation", "("], "X ",
18 ["punctuation", ":"], " boolean", ["punctuation", ")"],
19
20 ["keyword", "function"], ["quoted-function", "\"*\""],
21 ["punctuation", "("], "a ",
22 ["punctuation", ":"], " resistance",
23 ["punctuation", ";"], " b ",
24 ["punctuation", ":"], " capacitance", ["punctuation", ")"]
25 ]
26
27 ----------------------------------------------------
28
29 Checks for functions and operator overloading.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/vhdl/constant_feature.test ('k') | lib/src/prism/tests/languages/vhdl/keyword_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698