You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
9.2 KiB

2 months ago
  1. // CodeMirror, copyright (c) by Marijn Haverbeke and others
  2. // Distributed under an MIT license: https://codemirror.net/5/LICENSE
  3. (function() {
  4. var mode = CodeMirror.getMode({indentUnit: 2}, "swift");
  5. function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
  6. // Ensure all number types are properly represented.
  7. MT("numbers",
  8. "[keyword var] [def a] [operator =] [number 17]",
  9. "[keyword var] [def b] [operator =] [number -0.5]",
  10. "[keyword var] [def c] [operator =] [number 0.3456e-4]",
  11. "[keyword var] [def d] [operator =] [number 345e2]",
  12. "[keyword var] [def e] [operator =] [number 0o7324]",
  13. "[keyword var] [def f] [operator =] [number 0b10010]",
  14. "[keyword var] [def g] [operator =] [number -0x35ade]",
  15. "[keyword var] [def h] [operator =] [number 0xaea.ep-13]",
  16. "[keyword var] [def i] [operator =] [number 0x13ep6]");
  17. // Variable/class/etc definition.
  18. MT("definition",
  19. "[keyword var] [def a] [operator =] [number 5]",
  20. "[keyword let] [def b][punctuation :] [variable-2 Int] [operator =] [number 10]",
  21. "[keyword class] [def C] [punctuation {] [punctuation }]",
  22. "[keyword struct] [def D] [punctuation {] [punctuation }]",
  23. "[keyword enum] [def E] [punctuation {] [punctuation }]",
  24. "[keyword extension] [def F] [punctuation {] [punctuation }]",
  25. "[keyword protocol] [def G] [punctuation {] [punctuation }]",
  26. "[keyword func] [def h][punctuation ()] [punctuation {] [punctuation }]",
  27. "[keyword import] [def Foundation]",
  28. "[keyword typealias] [def NewString] [operator =] [variable-2 String]",
  29. "[keyword associatedtype] [def I]",
  30. "[keyword for] [def j] [keyword in] [number 0][punctuation ..][operator <][number 3] [punctuation {] [punctuation }]");
  31. // Strings and string interpolation.
  32. MT("strings",
  33. "[keyword var] [def a][punctuation :] [variable-2 String] [operator =] [string \"test\"]",
  34. "[keyword var] [def b][punctuation :] [variable-2 String] [operator =] [string \"\\(][variable a][string )\"]",
  35. "[keyword var] [def c] [operator =] [string \"\"\"]",
  36. "[string multi]",
  37. "[string line]",
  38. "[string \"test\"]",
  39. "[string \"\"\"]",
  40. "[variable print][punctuation (][string \"\"][punctuation )]");
  41. // Comments.
  42. MT("comments",
  43. "[comment // This is a comment]",
  44. "[comment /* This is another comment */]",
  45. "[keyword var] [def a] [operator =] [number 5] [comment // Third comment]");
  46. // Atoms.
  47. MT("atoms",
  48. "[keyword class] [def FooClass] [punctuation {]",
  49. " [keyword let] [def fooBool][punctuation :] [variable-2 Bool][operator ?]",
  50. " [keyword let] [def fooInt][punctuation :] [variable-2 Int][operator ?]",
  51. " [keyword func] [keyword init][punctuation (][variable fooBool][punctuation :] [variable-2 Bool][punctuation ,] [variable barBool][punctuation :] [variable-2 Bool][punctuation )] [punctuation {]",
  52. " [atom super][property .init][punctuation ()]",
  53. " [atom self][property .fooBool] [operator =] [variable fooBool]",
  54. " [variable fooInt] [operator =] [atom nil]",
  55. " [keyword if] [variable barBool] [operator ==] [atom true] [punctuation {]",
  56. " [variable print][punctuation (][string \"True!\"][punctuation )]",
  57. " [punctuation }] [keyword else] [keyword if] [variable barBool] [operator ==] [atom false] [punctuation {]",
  58. " [keyword for] [atom _] [keyword in] [number 0][punctuation ...][number 5] [punctuation {]",
  59. " [variable print][punctuation (][string \"False!\"][punctuation )]",
  60. " [punctuation }]",
  61. " [punctuation }]",
  62. " [punctuation }]",
  63. "[punctuation }]");
  64. // Types.
  65. MT("types",
  66. "[keyword var] [def a] [operator =] [variable-2 Array][operator <][variable-2 Int][operator >]",
  67. "[keyword var] [def b] [operator =] [variable-2 Set][operator <][variable-2 Bool][operator >]",
  68. "[keyword var] [def c] [operator =] [variable-2 Dictionary][operator <][variable-2 String][punctuation ,][variable-2 Character][operator >]",
  69. "[keyword var] [def d][punctuation :] [variable-2 Int64][operator ?] [operator =] [variable-2 Optional][punctuation (][number 8][punctuation )]",
  70. "[keyword func] [def e][punctuation ()] [operator ->] [variable-2 Void] [punctuation {]",
  71. " [keyword var] [def e1][punctuation :] [variable-2 Float] [operator =] [number 1.2]",
  72. "[punctuation }]",
  73. "[keyword func] [def f][punctuation ()] [operator ->] [variable-2 Never] [punctuation {]",
  74. " [keyword var] [def f1][punctuation :] [variable-2 Double] [operator =] [number 2.4]",
  75. "[punctuation }]");
  76. // Operators.
  77. MT("operators",
  78. "[keyword var] [def a] [operator =] [number 1] [operator +] [number 2]",
  79. "[keyword var] [def b] [operator =] [number 1] [operator -] [number 2]",
  80. "[keyword var] [def c] [operator =] [number 1] [operator *] [number 2]",
  81. "[keyword var] [def d] [operator =] [number 1] [operator /] [number 2]",
  82. "[keyword var] [def e] [operator =] [number 1] [operator %] [number 2]",
  83. "[keyword var] [def f] [operator =] [number 1] [operator |] [number 2]",
  84. "[keyword var] [def g] [operator =] [number 1] [operator &] [number 2]",
  85. "[keyword var] [def h] [operator =] [number 1] [operator <<] [number 2]",
  86. "[keyword var] [def i] [operator =] [number 1] [operator >>] [number 2]",
  87. "[keyword var] [def j] [operator =] [number 1] [operator ^] [number 2]",
  88. "[keyword var] [def k] [operator =] [operator ~][number 1]",
  89. "[keyword var] [def l] [operator =] [variable foo] [operator ?] [number 1] [punctuation :] [number 2]",
  90. "[keyword var] [def m][punctuation :] [variable-2 Int] [operator =] [variable-2 Optional][punctuation (][number 8][punctuation )][operator !]");
  91. // Punctuation.
  92. MT("punctuation",
  93. "[keyword let] [def a] [operator =] [number 1][punctuation ;] [keyword let] [def b] [operator =] [number 2]",
  94. "[keyword let] [def testArr][punctuation :] [punctuation [[][variable-2 Int][punctuation ]]] [operator =] [punctuation [[][variable a][punctuation ,] [variable b][punctuation ]]]",
  95. "[keyword for] [def i] [keyword in] [number 0][punctuation ..][operator <][variable testArr][property .count] [punctuation {]",
  96. " [variable print][punctuation (][variable testArr][punctuation [[][variable i][punctuation ]])]",
  97. "[punctuation }]");
  98. // Identifiers.
  99. MT("identifiers",
  100. "[keyword let] [def abc] [operator =] [number 1]",
  101. "[keyword let] [def ABC] [operator =] [number 2]",
  102. "[keyword let] [def _123] [operator =] [number 3]",
  103. "[keyword let] [def _$1$2$3] [operator =] [number 4]",
  104. "[keyword let] [def A1$_c32_$_] [operator =] [number 5]",
  105. "[keyword let] [def `var`] [operator =] [punctuation [[][number 1][punctuation ,] [number 2][punctuation ,] [number 3][punctuation ]]]",
  106. "[keyword let] [def square$] [operator =] [variable `var`][property .map] [punctuation {][variable $0] [operator *] [variable $0][punctuation }]",
  107. "$$ [number 1][variable a] $[atom _] [variable _$] [variable __] `[variable a] [variable b]`");
  108. // Properties.
  109. MT("properties",
  110. "[variable print][punctuation (][variable foo][property .abc][punctuation )]",
  111. "[variable print][punctuation (][variable foo][property .ABC][punctuation )]",
  112. "[variable print][punctuation (][variable foo][property ._123][punctuation )]",
  113. "[variable print][punctuation (][variable foo][property ._$1$2$3][punctuation )]",
  114. "[variable print][punctuation (][variable foo][property .A1$_c32_$_][punctuation )]",
  115. "[variable print][punctuation (][variable foo][property .`var`][punctuation )]",
  116. "[variable print][punctuation (][variable foo][property .__][punctuation )]");
  117. // Instructions or other things that start with #.
  118. MT("instructions",
  119. "[keyword if] [builtin #available][punctuation (][variable iOS] [number 9][punctuation ,] [operator *][punctuation )] [punctuation {}]",
  120. "[variable print][punctuation (][builtin #file][punctuation ,] [builtin #function][punctuation )]",
  121. "[variable print][punctuation (][builtin #line][punctuation ,] [builtin #column][punctuation )]",
  122. "[builtin #if] [atom true]",
  123. "[keyword import] [def A]",
  124. "[builtin #elseif] [atom false]",
  125. "[keyword import] [def B]",
  126. "[builtin #endif]",
  127. "[builtin #sourceLocation][punctuation (][variable file][punctuation :] [string \"file.swift\"][punctuation ,] [variable line][punctuation :] [number 2][punctuation )]");
  128. // Attributes; things that start with @.
  129. MT("attributes",
  130. "[attribute @objc][punctuation (][variable objcFoo][punctuation :)]",
  131. "[attribute @available][punctuation (][variable iOS][punctuation )]");
  132. // Property/number edge case.
  133. MT("property_number",
  134. "[variable print][punctuation (][variable foo][property ._123][punctuation )]",
  135. "[variable print][punctuation (]")
  136. MT("nested_comments",
  137. "[comment /*]",
  138. "[comment But wait /* this is a nested comment */ for real]",
  139. "[comment /**** let * me * show * you ****/]",
  140. "[comment ///// let / me / show / you /////]",
  141. "[comment */]");
  142. // TODO: correctly identify when multiple variables are being declared
  143. // by use of a comma-separated list.
  144. // TODO: correctly identify when variables are being declared in a tuple.
  145. // TODO: identify protocols as types when used before an extension?
  146. })();