inherit string quotes - fixes #991

This commit is contained in:
Sebastian McKenzie
2015-03-31 02:09:56 +11:00
parent b8f2a27e90
commit 153e81261c
11 changed files with 63 additions and 9 deletions

View File

@@ -0,0 +1,4 @@
foo("foo");
foo("foo\nlol");
foo("foo\n\"lol");
foo("foo\n\"'lol");

View File

@@ -0,0 +1,4 @@
foo("foo");
foo("foo\nlol");
foo("foo\n\"lol");
foo("foo\n\"'lol");

View File

@@ -0,0 +1,4 @@
foo('foo');
foo('foo\nlol');
foo('foo\n"lol');
foo('foo\n"\'lol');

View File

@@ -0,0 +1,4 @@
foo('foo');
foo('foo\nlol');
foo('foo\n"lol');
foo('foo\n"\'lol');