Sign in
eclipse
/
gerrit
/
dltk
/
org.eclipse.dltk.javascript
/
2f7dcb8816d82b90ff2fc8d975990cd50f648220
/
.
/
tests
/
org.eclipse.dltk.javascript.formatter.tests
/
scripts
/
strings.js
blob: 8578ae67b3daeec5eaa4e05b788250fa1261520d [
file
]
====
string
-
literals
a
=
" aaaa "
;
b
=
' 1000 '
;
==
a
=
" aaaa "
;
b
=
' 1000 '
;
====
multiline
-
string
-
literals
function
test
()
{
a
=
"
1
\
2
\
3
";
}
==
function
test
()
{
a
=
"
1
\
2
\
3
";
}
====