Merged gcj-eclipse branch to trunk.
From-SVN: r120621
This commit is contained in:
parent
c648dedbde
commit
97b8365caf
17478 changed files with 606493 additions and 100744 deletions
|
@ -260,6 +260,14 @@ final class RETokenNamedProperty extends REToken {
|
|||
return new UnicodeCategoryHandler(Character.UNASSIGNED);
|
||||
if (name.equals("Lu"))
|
||||
return new UnicodeCategoryHandler(Character.UPPERCASE_LETTER);
|
||||
if (name.equals("all"))
|
||||
return new Handler()
|
||||
{
|
||||
public boolean includes(char c)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
};
|
||||
throw new REException("unsupported name " + name, REException.REG_ESCAPE, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue