| Index: test/lexer/utf-2.js
|
| diff --git a/test/lexer/utf-2.js b/test/lexer/utf-2.js
|
| index f2f5f73a18fe34d5432a51eec8726c57f5770c1e..f0bfbadb650344b0b7533e56101ae44d5f744ca1 100644
|
| --- a/test/lexer/utf-2.js
|
| +++ b/test/lexer/utf-2.js
|
| @@ -25,7 +25,17 @@
|
| // (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 letters.
|
| +// This file is in utf-8, and contains weird letters.
|
|
|
| +// These letters are ok in identifiers.
|
| var fööbar = 16; // ö in latin1, but not in ascii.
|
| -var fooķar = 17; // ķ not in latin1.
|
| +var fooķar = 17; // ķ not in latin1.
|
| +
|
| +var inside_strings = "öķ";
|
| +var inside_strings2 = 'öķ';
|
| +
|
| +// And inside a comment: öķ
|
| +
|
| +/* And a multi-line comment öķ */
|
| +
|
| +<!-- And an html comment öķ -->
|
|
|