compiler: Remove whitespace from vector/matrix constants

master
Mike Gerwitz 2021-01-27 16:54:45 -05:00
parent 9dbda93b4f
commit 0cd6d40dd9
1 changed files with 3 additions and 3 deletions

View File

@ -419,13 +419,13 @@
<!-- matrices -->
<for-each select="compiler:const-sets( . )[ not( . = '' ) ]">
<if test="position() > 1">
<text>, </text>
<text>,</text>
</if>
<text>[</text>
<for-each select="compiler:set-items( ., true() )">
<if test="position() > 1">
<text>, </text>
<text>,</text>
</if>
<value-of select="compiler:js-number( . )" />
@ -436,7 +436,7 @@
<!-- vectors -->
<for-each select="compiler:set-items( ., false() )">
<if test="position() > 1">
<text>, </text>
<text>,</text>
</if>
<value-of select="compiler:js-number( . )" />