Add some new features to our quoted string parser, and a unit test

- Now supports \n \t \f escape sequences
- Now supports strings with literal tabs
This commit is contained in:
2023-01-21 14:45:55 -05:00
parent a93102a08f
commit 76ee270c6e
5 changed files with 105 additions and 11 deletions

View File

@@ -201,6 +201,7 @@
<ClCompile Include="..\..\..\test\scen_read.cpp" />
<ClCompile Include="..\..\..\test\scen_write.cpp" />
<ClCompile Include="..\..\..\test\spec_legacy.cpp" />
<ClCompile Include="..\..\..\test\string_quote.cpp" />
<ClCompile Include="..\..\..\test\tagfile.cpp" />
<ClCompile Include="..\..\..\test\talk_legacy.cpp" />
<ClCompile Include="..\..\..\test\talk_read.cpp" />

View File

@@ -77,6 +77,9 @@
<ClCompile Include="..\..\..\test\spec_legacy.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\..\test\string_quote.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\..\test\tagfile.cpp">
<Filter>Source Files</Filter>
</ClCompile>