aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/ParserContext/LineParserContext.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/WmapParser/ParserContext/LineParserContext.swift')
-rw-r--r--Sources/WmapParser/ParserContext/LineParserContext.swift7
1 files changed, 7 insertions, 0 deletions
diff --git a/Sources/WmapParser/ParserContext/LineParserContext.swift b/Sources/WmapParser/ParserContext/LineParserContext.swift
new file mode 100644
index 0000000..c823383
--- /dev/null
+++ b/Sources/WmapParser/ParserContext/LineParserContext.swift
@@ -0,0 +1,7 @@
+extension WmapParser {
+ struct LineParserContext {
+ var components: [Component]
+ var dependencies: [Dependency]
+ var keywordContext: KeywordParserContext
+ }
+}