aboutsummaryrefslogtreecommitdiff
path: root/spec/ebnf.xml
diff options
context:
space:
mode:
authorSchuyler Eldridge2022-03-04 16:07:54 -0500
committerGitHub2022-03-04 16:07:54 -0500
commita372c20cc1a52881356603274512bd35e7149a55 (patch)
tree1681eea0384928afaf27729f515c977d173398bb /spec/ebnf.xml
parent95cae3cd0eb9ac72eb6373207dbf9f09fb1c7086 (diff)
[spec] Remove FIRRTL Specification (#2488)
This removes the FIRRTL specification as this now lives in its own repository: https://github.com/chipsalliance/firrtl-spec All git history (excluding binary updates to spec.pdf) have been migrated to the new repository. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@sifive.com>
Diffstat (limited to 'spec/ebnf.xml')
-rw-r--r--spec/ebnf.xml41
1 files changed, 0 insertions, 41 deletions
diff --git a/spec/ebnf.xml b/spec/ebnf.xml
deleted file mode 100644
index 772335f0..00000000
--- a/spec/ebnf.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<language name="EBNF" version="1" kateversion="2.4" section="Sources" extensions="*.ebnf">
- <highlighting>
- <contexts>
- <context name = "lhs" attribute="Keyword" lineEndContext="#stay">
- <DetectChar char="=" attribute="Operator" context="rhs"/>
- <Detect2Chars char="(" char1="*" attribute="Comment" context="comment"/>
- </context>
- <context name = "rhs" attribute="Variable" lineEndContext="#stay">
- <AnyChar String="|" attribute="Operator" context="#stay"/>
- <AnyChar String=",()[]{}" attribute="Separator" context="#stay"/>
- <DetectChar char=";" attribute="Separator" context="#pop"/>
- <DetectChar attribute="String" context="stringdoublequote" char="&quot;" />
- <DetectChar attribute="String" context="stringsinglequote" char="&apos;" />
- <DetectChar char="?" attribute="Operator" context="special"/>
- </context>
- <context name="stringdoublequote" attribute="String" lineEndContext="#stay">
- <DetectChar attribute="String" context="#pop" char="&quot;"/>
- </context>
- <context name="stringsinglequote" attribute="String" lineEndContext="#stay">
- <DetectChar attribute="String" context="#pop" char="&apos;"/>
- </context>
- <context name="comment" attribute="Comment" lineEndContext="#stay">
- <Detect2Chars char="*" char1=")" context="#pop"/>
- </context>
- <context name="special" attribute="Special" lineEndContext="#stay">
- <DetectChar char="?" attribute="Operator" context="#pop"/>
- </context>
- </contexts>
- <itemDatas>
- <itemData name="Normal Text" defStyleNum="dsNormal" />
- <itemData name="Keyword" defStyleNum="dsKeyword" />
- <itemData name="Operator" defStyleNum="dsOperator" />
- <itemData name="Separator" defStyleNum="dsOperator" />
- <itemData name="String" defStyleNum="dsString" />
- <itemData name="Variable" defStyleNum="dsVariable" />
- <itemData name="Comment" defStyleNum="dsComment"/>
- <itemData name="Special" defStyleNum="dsVerbatimString"/>
- </itemDatas>
- </highlighting>
-</language>