File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -63,9 +63,11 @@ function parseAtom(token) {
6363 }
6464 if ( token [ 0 ] === '"' ) {
6565 const rawString = token . slice ( 1 , - 1 ) ;
66- return rawString . replace ( / \\ n / g, '\n' )
66+ return rawString
67+ . replace ( / \\ n / g, '\n' )
6768 . replace ( / \\ r / g, '\r' )
68- . replace ( / \\ t / g, '\t' ) ;
69+ . replace ( / \\ t / g, '\t' )
70+ . replace ( / \\ " / g, '"' ) ;
6971 }
7072
7173 let numberParseTry = parseInt ( token ) ;
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class RosettaTestSuite {
8888
8989 initializeSuite ( ) {
9090 this . suite = this . evalScheme ( this . suiteSource ) ;
91- this . suiteEval ( "(suite-set-bridge-name! the_suite bridge_name)" , { "bridge_name" : this . bridgeName } ) ;
91+ this . suiteEval ( "(suite-set-bridge-name! the-suite bridge_name)" , { "bridge_name" : this . bridgeName } ) ;
9292 }
9393
9494 placeholders ( ) {
You can’t perform that action at this time.
0 commit comments