| Index: test/lexer/latin1-1.js
|
| diff --git a/test/lexer/utf-3.js b/test/lexer/latin1-1.js
|
| similarity index 85%
|
| copy from test/lexer/utf-3.js
|
| copy to test/lexer/latin1-1.js
|
| index 8ebe1e4a7a301fd20453575239940aa1096eab8a..bf0d39a470c89621f809402b6e5d1584f6d1f957 100644
|
| --- a/test/lexer/utf-3.js
|
| +++ b/test/lexer/latin1-1.js
|
| @@ -25,14 +25,16 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -// This file is in utf-16, and contains weird characters in strings and
|
| -// comments.
|
| +// This file is in latin1, and contains weird letters.
|
|
|
| -var here_it_is = "â";
|
| -var here_too = 'â';
|
| +// ö is ok in identifiers.
|
| +var fööbar = 16; // ö in latin1, but not in ascii.
|
|
|
| -// And inside a comment: â
|
| +var inside_strings = "ö";
|
| +var inside_strings2 = 'ö';
|
|
|
| -/* And a multi-line comment â */
|
| +// And inside a comment: ö
|
|
|
| -<!-- And an html comment â -->
|
| +/* And a multi-line comment ö */
|
| +
|
| +<!-- And an html comment ö -->
|
|
|