CS-Notes/docs/_style/prism-master/tests/languages/smalltalk/block-arguments_feature.test

26 lines
446 B
Plaintext
Raw Normal View History

2018-12-19 14:09:39 +08:00
[ :i |
]
[ :a :b |
]
----------------------------------------------------
[
["punctuation", "["],
["block-arguments", [
["variable", ":i"],
["punctuation", "|"]
]],
["punctuation", "]"],
["punctuation", "["],
["block-arguments", [
["variable", ":a"],
["variable", ":b"],
["punctuation", "|"]
]],
["punctuation", "]"]
]
----------------------------------------------------
Checks for block arguments.