Blame view

bower_components/prism/tests/languages/twig/number_feature.test 928 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
45
  {{ 0xBadFace }}

  {{ 42 }}

  {{ 3.14159 }}

  {{ 3e15 }}

  {{ 4.5E-4 }}

  {{ 0.2e+8 }}

  

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

  

  [

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "0xBadFace"],

  		["rd", [["punctuation", "}}"]]]

  	]],

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "42"],

  		["rd", [["punctuation", "}}"]]]

  	]],

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "3.14159"],

  		["rd", [["punctuation", "}}"]]]

  	]],

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "3e15"],

  		["rd", [["punctuation", "}}"]]]

  	]],

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "4.5E-4"],

  		["rd", [["punctuation", "}}"]]]

  	]],

  	["tag", [

  		["ld", [["punctuation", "{{"]]],

  		["number", "0.2e+8"],

  		["rd", [["punctuation", "}}"]]]

  	]]

  ]

  

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

  

  Checks for hexadecimal and decimal numbers.