Bug constant6 quotes are included in string constant
Status: Alpha
Brought to you by:
martinbaker
Bug constant6 quotes are included in string constant
Test input file
public class test {
public test() {
st = "string";
}
}
Test output file
<?xml version="1.0" encoding="UTF-8"?>
<package>
<classDef name="test" public="true">
<method constructor="true" name="test" public="true">
<parameterList/>
<assign operator="=">
<variable name="st"/>
<constant stringConst=""string""/>
</assign>
</method>
</classDef>
</package>
Text result expected
<?xml version="1.0" encoding="UTF-8"?>
<package>
<classDef name="test" public="true">
<method constructor="true" name="test" public="true">
<parameterList/>
<assign operator="=">
<variable name="st"/>
<constant stringConst="string
</assign>
</method>
</classDef>
</package>
test input file