Skip to content

Commit

Permalink
eo 0.43.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 26, 2024
1 parent fe28cf6 commit c781ef1
Show file tree
Hide file tree
Showing 12 changed files with 63 additions and 33 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ SOFTWARE.
<dependency>
<groupId>org.eolang</groupId>
<artifactId>eo-parser</artifactId>
<version>0.43.1</version>
<version>0.43.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="not-empty-atoms" version="2.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="atom-in-atom" version="2.0">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
<defects>
<xsl:for-each select="//o[@atom and o[@base]]">
<xsl:element name="defect">
<xsl:attribute name="line">
<xsl:value-of select="if (@line) then @line else '0'"/>
</xsl:attribute>
<xsl:attribute name="severity">
<xsl:text>error</xsl:text>
</xsl:attribute>
<xsl:text>The atom '</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>' may not have any attributes: </xsl:text>
<xsl:for-each select="o[@base]">
<xsl:if test="position() &gt; 1">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:text>'</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>'</xsl:text>
</xsl:for-each>
</xsl:element>
</xsl:for-each>
<xsl:for-each select="//o[@atom and o[@atom]]">
<xsl:element name="defect">
<xsl:attribute name="line">
Expand Down
52 changes: 52 additions & 0 deletions src/main/resources/org/eolang/lints/critical/not-empty-atom.xsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
The MIT License (MIT)
Copyright (c) 2016-2024 Objectionary.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="not-empty-atom" version="2.0">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
<defects>
<xsl:for-each select="//o[@atom and o[@base]]">
<xsl:element name="defect">
<xsl:attribute name="line">
<xsl:value-of select="if (@line) then @line else '0'"/>
</xsl:attribute>
<xsl:attribute name="severity">
<xsl:text>error</xsl:text>
</xsl:attribute>
<xsl:text>The atom '</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>' may not have any attributes: </xsl:text>
<xsl:for-each select="o[@base]">
<xsl:if test="position() &gt; 1">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:text>'</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>'</xsl:text>
</xsl:for-each>
</xsl:element>
</xsl:for-each>
</defects>
</xsl:template>
</xsl:stylesheet>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="global-nonames" version="2.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="global-noname" version="2.0">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
<defects>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:eo="https://www.eolang.org" id="noname-attributes" version="2.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:eo="https://www.eolang.org" id="noname-attribute" version="2.0">
<xsl:import href="/org/eolang/parser/_funcs.xsl"/>
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="unknown-names" version="2.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="unknown-name" version="2.0">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
<defects>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="broken-refs" version="2.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="broken-ref" version="2.0">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="/">
<defects>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@ xsls:
- /org/eolang/parser/expand-aliases.xsl
- /org/eolang/lints/aliases/broken-alias.xsl
tests:
- /defects[count(defect[@severity='error'])=22]
- /defects[count(defect[@severity='error'])=21]
eo: |
+alias FirstLetter Capital.Letters.Prohibited.Here
+alias good Should.Be.Small
+alias with-Dash-and-number-999 0.1.2
+alias caseInsensitive thiS.IS.2
+alias the symbol.is.not.allowed
+alias the! symbol.is.not.allowed
+alias the" symbol.is.not.allowed
+alias the# symbol.is.not.allowed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
---
xsls:
- /org/eolang/parser/add-refs.xsl
- /org/eolang/lints/refs/broken-refs.xsl
- /org/eolang/lints/refs/broken-ref.xsl
tests:
- /defects[count(*)=0]
eo: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# SOFTWARE.
---
xsls:
- /org/eolang/lints/errors/global-nonames.xsl
- /org/eolang/lints/errors/global-noname.xsl
tests:
- /defects[count(defect[@severity='error'])=1]
- /defects/defect[@line='3']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
---
xsls:
- /org/eolang/parser/wrap-method-calls.xsl
- /org/eolang/lints/errors/noname-attributes.xsl
- /org/eolang/lints/errors/noname-attribute.xsl
tests:
- /defects[count(defect[@severity='error'])=4]
- /defects/defect[@line='3']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# SOFTWARE.
---
xsls:
- /org/eolang/lints/errors/unknown-names.xsl
- /org/eolang/lints/errors/unknown-name.xsl
tests:
- /defects[count(defect[@severity='error'])=1]
- /defects/defect[@line='5']
Expand Down

0 comments on commit c781ef1

Please sign in to comment.