Merge pull request #16 from marcocapano/patch-1

Add support for new keywords
This commit is contained in:
John Sundell 2018-09-06 08:39:16 +02:00 committed by GitHub
commit 88961141d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 110 additions and 2 deletions

View File

@ -47,7 +47,8 @@ private extension SwiftGrammar {
"super", "self", "set", "true", "false", "nil",
"override", "where", "_", "default", "break",
"#selector", "required", "willSet", "didSet",
"lazy", "subscript", "defer", "inout"
"lazy", "subscript", "defer", "inout", "while",
"continue", "fallthrough", "repeat"
]
struct PreprocessingRule: SyntaxRule {

View File

@ -135,6 +135,40 @@ final class StatementTests: SyntaxHighlighterTestCase {
])
}
func testSwitchStatementWithFallthrough() {
let components = highlighter.highlight("""
switch variable {
case .one: fallthrough
default:
callB()
}
""")
XCTAssertEqual(components, [
.token("switch", .keyword),
.whitespace(" "),
.plainText("variable"),
.whitespace(" "),
.plainText("{"),
.whitespace("\n"),
.token("case", .keyword),
.whitespace(" "),
.plainText("."),
.token("one", .dotAccess),
.plainText(":"),
.whitespace(" "),
.token("fallthrough", .keyword),
.whitespace("\n"),
.token("default", .keyword),
.plainText(":"),
.whitespace("\n "),
.token("callB", .call),
.plainText("()"),
.whitespace("\n"),
.plainText("}")
])
}
func testForStatementWithStaticProperty() {
let components = highlighter.highlight("for value in Enum.allCases { }")
@ -155,6 +189,76 @@ final class StatementTests: SyntaxHighlighterTestCase {
])
}
func testForStatementWithContinue() {
let components = highlighter.highlight("for value in Enum.allCases { continue }")
XCTAssertEqual(components, [
.token("for", .keyword),
.whitespace(" "),
.plainText("value"),
.whitespace(" "),
.token("in", .keyword),
.whitespace(" "),
.token("Enum", .type),
.plainText("."),
.token("allCases", .property),
.whitespace(" "),
.plainText("{"),
.whitespace(" "),
.token("continue",.keyword),
.whitespace(" "),
.plainText("}")
])
}
func testRepeatWhileStatement() {
let components = highlighter.highlight("""
var x = 5
repeat {
print(x)
x = x - 1
} while x > 1
""")
XCTAssertEqual(components, [
.token("var", .keyword),
.whitespace(" "),
.plainText("x"),
.whitespace(" "),
.plainText("="),
.whitespace(" "),
.token("5", .number),
.whitespace("\n"),
.token("repeat", .keyword),
.whitespace(" "),
.plainText("{"),
.whitespace("\n "),
.token("print", .call),
.plainText("(x)"),
.whitespace("\n "),
.plainText("x"),
.whitespace(" "),
.plainText("="),
.whitespace(" "),
.plainText("x"),
.whitespace(" "),
.plainText("-"),
.whitespace(" "),
.token("1", .number),
.whitespace("\n"),
.plainText("}"),
.whitespace(" "),
.token("while", .keyword),
.whitespace(" "),
.plainText("x"),
.whitespace(" "),
.plainText(">"),
.whitespace(" "),
.token("1", .number)
])
}
func testAllTestsRunOnLinux() {
XCTAssertTrue(TestCaseVerifier.verifyLinuxTests((type(of: self)).allTests))
}
@ -168,7 +272,10 @@ extension StatementTests {
("testChainedIfElseStatements", testChainedIfElseStatements),
("testSwitchStatement", testSwitchStatement),
("testSwitchStatementWithAssociatedValues", testSwitchStatementWithAssociatedValues),
("testForStatementWithStaticProperty", testForStatementWithStaticProperty)
("testSwitchStatementWithFallthrough", testSwitchStatementWithFallthrough),
("testForStatementWithStaticProperty", testForStatementWithStaticProperty),
("testForStatementWithContinue", testForStatementWithContinue),
("testRepeatWhileStatement", testRepeatWhileStatement)
]
}
}