From b742c3cfa307cb0d0550e9aca4e54311041f63ed Mon Sep 17 00:00:00 2001 From: Nikhil Muskur Date: Tue, 4 Sep 2018 16:30:42 +0530 Subject: [PATCH] added "inout" as keyword --- Sources/Splash/Grammar/SwiftGrammar.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Splash/Grammar/SwiftGrammar.swift b/Sources/Splash/Grammar/SwiftGrammar.swift index b6110ef..2c34db6 100644 --- a/Sources/Splash/Grammar/SwiftGrammar.swift +++ b/Sources/Splash/Grammar/SwiftGrammar.swift @@ -47,7 +47,7 @@ private extension SwiftGrammar { "super", "self", "set", "true", "false", "nil", "override", "where", "_", "default", "break", "#selector", "required", "willSet", "didSet", - "lazy", "subscript", "defer" + "lazy", "subscript", "defer", "inout" ] struct PreprocessingRule: SyntaxRule {