Adding a comment

git-svn-id: svn://10.0.0.236/trunk@126195 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pschwartau%netscape.com 2002-08-02 00:13:00 +00:00
parent a34757fbf8
commit f06074305e

View File

@ -62,6 +62,11 @@ actualmatch = string.match(pattern);
expectedmatch = null;
addThis();
/*
* In the following sections, we test the octal escape sequence '\052'.
* This is character code 42, representing the asterisk character '*'.
* The Unicode escape for it would be '\u002A', the hex escape '\x2A'.
*/
status = inSection(2);
pattern = /ab\052c/;
string = 'ab*c';