rhino-xml/src/main/java/org/mozilla/javascript/xmlimpl/Namespace.java [158:217]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return super.getInstanceIdValue(id);
    }

    // #string_id_map#
    private static final int Id_constructor = 1,
            Id_toString = 2,
            Id_toSource = 3,
            MAX_PROTOTYPE_ID = 3;

    @Override
    protected int findPrototypeId(String s) {
        int id;
        // #generated# Last update: 2007-08-20 08:23:22 EDT
        L0:
        {
            id = 0;
            String X = null;
            int c;
            int s_length = s.length();
            if (s_length == 8) {
                c = s.charAt(3);
                if (c == 'o') {
                    X = "toSource";
                    id = Id_toSource;
                } else if (c == 't') {
                    X = "toString";
                    id = Id_toString;
                }
            } else if (s_length == 11) {
                X = "constructor";
                id = Id_constructor;
            }
            if (!Objects.equals(X, s)) id = 0;
            break L0;
        }
        // #/generated#
        return id;
    }

    // #/string_id_map#

    @Override
    protected void initPrototypeId(int id) {
        String s;
        int arity;
        switch (id) {
            case Id_constructor:
                arity = 2;
                s = "constructor";
                break;
            case Id_toString:
                arity = 0;
                s = "toString";
                break;
            case Id_toSource:
                arity = 0;
                s = "toSource";
                break;
            default:
                throw new IllegalArgumentException(String.valueOf(id));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rhino-xml/src/main/java/org/mozilla/javascript/xmlimpl/QName.java [190:249]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return super.getInstanceIdValue(id);
    }

    // #string_id_map#
    private static final int Id_constructor = 1,
            Id_toString = 2,
            Id_toSource = 3,
            MAX_PROTOTYPE_ID = 3;

    @Override
    protected int findPrototypeId(String s) {
        int id;
        // #generated# Last update: 2007-08-20 08:21:41 EDT
        L0:
        {
            id = 0;
            String X = null;
            int c;
            int s_length = s.length();
            if (s_length == 8) {
                c = s.charAt(3);
                if (c == 'o') {
                    X = "toSource";
                    id = Id_toSource;
                } else if (c == 't') {
                    X = "toString";
                    id = Id_toString;
                }
            } else if (s_length == 11) {
                X = "constructor";
                id = Id_constructor;
            }
            if (!Objects.equals(X, s)) id = 0;
            break L0;
        }
        // #/generated#
        return id;
    }

    // #/string_id_map#

    @Override
    protected void initPrototypeId(int id) {
        String s;
        int arity;
        switch (id) {
            case Id_constructor:
                arity = 2;
                s = "constructor";
                break;
            case Id_toString:
                arity = 0;
                s = "toString";
                break;
            case Id_toSource:
                arity = 0;
                s = "toSource";
                break;
            default:
                throw new IllegalArgumentException(String.valueOf(id));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



