Blame view

bower_components/prism/tests/languages/stylus/keyword_feature.test 1004 Bytes
eb240478   Luigi Serra   public room cards...
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
  for i in 1..5

  if a == 3

  z-index: 1 unless @z-index;

  return pair[1] if pair[0] == key for pair in hash

  

  ----------------------------------------------------

  

  [

  	["statement", [

  		["keyword", "for"],

  		" i ",

  		["operator", "in"],

  		["number", "1"],

  		["operator", ".."],

  		["number", "5"]

  	]],

  	["statement", [

  		["keyword", "if"],

  		" a ",

  		["operator", "=="],

  		["number", "3"]

  	]],

  	["property-declaration", [

  		["property", ["z-index"]],

  		["punctuation", ":"],

  		["number", "1"],

  		["keyword", "unless"],

  		["keyword", "@z-index"],

  		["punctuation", ";"]

  	]],

  	["statement", [

  		["keyword", "return"], " pair",

  		["punctuation", "["], ["number", "1"], ["punctuation", "]"],

  		["keyword", "if"], " pair",

  		["punctuation", "["], ["number", "0"], ["punctuation", "]"],

  		["operator", "=="], " key ",

  		["keyword", "for"], " pair ",

  		["operator", "in"], " hash"

  	]]

  ]

  

  ----------------------------------------------------

  

  Checks for statements and keywords.