src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr.java
author joehw
Wed, 18 Oct 2017 13:25:49 -0700
changeset 47359 e1a6c0168741
parent 47216 71c04702a3d5
child 47712 bde0215f1f70
permissions -rw-r--r--
8181150: Fix lint warnings in JAXP repo: rawtypes and unchecked Reviewed-by: lancea, rriggs, mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
47359
e1a6c0168741 8181150: Fix lint warnings in JAXP repo: rawtypes and unchecked
joehw
parents: 47216
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
e1a6c0168741 8181150: Fix lint warnings in JAXP repo: rawtypes and unchecked
joehw
parents: 47216
diff changeset
     3
 * @LastModified: Oct 2017
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
/*
44797
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     6
 * Licensed to the Apache Software Foundation (ASF) under one or more
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     7
 * contributor license agreements.  See the NOTICE file distributed with
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     8
 * this work for additional information regarding copyright ownership.
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     9
 * The ASF licenses this file to You under the Apache License, Version 2.0
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    10
 * (the "License"); you may not use this file except in compliance with
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    11
 * the License.  You may obtain a copy of the License at
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 *
44797
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    13
 *      http://www.apache.org/licenses/LICENSE-2.0
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 * Unless required by applicable law or agreed to in writing, software
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 * distributed under the License is distributed on an "AS IS" BASIS,
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * See the License for the specific language governing permissions and
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 * limitations under the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
package com.sun.org.apache.xalan.internal.xsltc.compiler;
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
import com.sun.org.apache.bcel.internal.generic.GOTO;
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
import com.sun.org.apache.bcel.internal.generic.InstructionHandle;
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
import com.sun.org.apache.bcel.internal.generic.InstructionList;
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator;
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator;
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType;
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
import com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError;
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
 * @author Jacek Ambroziak
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
 * @author Santiago Pericas-Geertsen
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
 * @author Morten Jorgensen
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
final class LogicalExpr extends Expression {
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
    public static final int OR  = 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
    public static final int AND = 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
    private final int  _op;     // operator
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
    private Expression _left;   // first operand
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
    private Expression _right;  // second operand
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
    private static final String[] Ops = { "or", "and" };
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
     * Creates a new logical expression - either OR or AND. Note that the
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
     * left- and right-hand side expressions can also be logical expressions,
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
     * thus creating logical trees representing structures such as
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
     * (a and (b or c) and d), etc...
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
    public LogicalExpr(int op, Expression left, Expression right) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
        _op = op;
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
        (_left = left).setParent(this);
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
        (_right = right).setParent(this);
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
     * Returns true if this expressions contains a call to position(). This is
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
     * needed for context changes in node steps containing multiple predicates.
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
    public boolean hasPositionCall() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
        return (_left.hasPositionCall() || _right.hasPositionCall());
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
     * Returns true if this expressions contains a call to last()
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
    public boolean hasLastCall() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
            return (_left.hasLastCall() || _right.hasLastCall());
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
     * Returns an object representing the compile-time evaluation
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
     * of an expression. We are only using this for function-available
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
     * and element-available at this time.
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
    public Object evaluateAtCompileTime() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
        final Object leftb = _left.evaluateAtCompileTime();
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
        final Object rightb = _right.evaluateAtCompileTime();
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
        // Return null if we can't evaluate at compile time
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
        if (leftb == null || rightb == null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
            return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
        if (_op == AND) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
            return (leftb == Boolean.TRUE && rightb == Boolean.TRUE) ?
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
                Boolean.TRUE : Boolean.FALSE;
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
        else {
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
            return (leftb == Boolean.TRUE || rightb == Boolean.TRUE) ?
7f561c08de6b Initial load
duke
parents:
diff changeset
    96
                Boolean.TRUE : Boolean.FALSE;
7f561c08de6b Initial load
duke
parents:
diff changeset
    97
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    98
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    99
7f561c08de6b Initial load
duke
parents:
diff changeset
   100
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   101
     * Returns this logical expression's operator - OR or AND represented
7f561c08de6b Initial load
duke
parents:
diff changeset
   102
     * by 0 and 1 respectively.
7f561c08de6b Initial load
duke
parents:
diff changeset
   103
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   104
    public int getOp() {
7f561c08de6b Initial load
duke
parents:
diff changeset
   105
        return(_op);
7f561c08de6b Initial load
duke
parents:
diff changeset
   106
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   107
7f561c08de6b Initial load
duke
parents:
diff changeset
   108
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   109
     * Override the SyntaxTreeNode.setParser() method to make sure that the
7f561c08de6b Initial load
duke
parents:
diff changeset
   110
     * parser is set for sub-expressions
7f561c08de6b Initial load
duke
parents:
diff changeset
   111
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   112
    public void setParser(Parser parser) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   113
        super.setParser(parser);
7f561c08de6b Initial load
duke
parents:
diff changeset
   114
        _left.setParser(parser);
7f561c08de6b Initial load
duke
parents:
diff changeset
   115
        _right.setParser(parser);
7f561c08de6b Initial load
duke
parents:
diff changeset
   116
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   117
7f561c08de6b Initial load
duke
parents:
diff changeset
   118
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   119
     * Returns a string describing this expression
7f561c08de6b Initial load
duke
parents:
diff changeset
   120
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   121
    public String toString() {
7f561c08de6b Initial load
duke
parents:
diff changeset
   122
        return Ops[_op] + '(' + _left + ", " + _right + ')';
7f561c08de6b Initial load
duke
parents:
diff changeset
   123
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   124
7f561c08de6b Initial load
duke
parents:
diff changeset
   125
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   126
     * Type-check this expression, and possibly child expressions.
7f561c08de6b Initial load
duke
parents:
diff changeset
   127
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   128
    public Type typeCheck(SymbolTable stable) throws TypeCheckError {
7f561c08de6b Initial load
duke
parents:
diff changeset
   129
        // Get the left and right operand types
7f561c08de6b Initial load
duke
parents:
diff changeset
   130
        Type tleft = _left.typeCheck(stable);
7f561c08de6b Initial load
duke
parents:
diff changeset
   131
        Type tright = _right.typeCheck(stable);
7f561c08de6b Initial load
duke
parents:
diff changeset
   132
7f561c08de6b Initial load
duke
parents:
diff changeset
   133
        // Check if the operator supports the two operand types
7f561c08de6b Initial load
duke
parents:
diff changeset
   134
        MethodType wantType = new MethodType(Type.Void, tleft, tright);
7f561c08de6b Initial load
duke
parents:
diff changeset
   135
        MethodType haveType = lookupPrimop(stable, Ops[_op], wantType);
7f561c08de6b Initial load
duke
parents:
diff changeset
   136
7f561c08de6b Initial load
duke
parents:
diff changeset
   137
        // Yes, the operation is supported
7f561c08de6b Initial load
duke
parents:
diff changeset
   138
        if (haveType != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   139
            // Check if left-hand side operand must be type casted
47359
e1a6c0168741 8181150: Fix lint warnings in JAXP repo: rawtypes and unchecked
joehw
parents: 47216
diff changeset
   140
            Type arg1 = (Type)haveType.argsType().get(0);
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   141
            if (!arg1.identicalTo(tleft))
7f561c08de6b Initial load
duke
parents:
diff changeset
   142
                _left = new CastExpr(_left, arg1);
7f561c08de6b Initial load
duke
parents:
diff changeset
   143
            // Check if right-hand side operand must be type casted
47359
e1a6c0168741 8181150: Fix lint warnings in JAXP repo: rawtypes and unchecked
joehw
parents: 47216
diff changeset
   144
            Type arg2 = (Type) haveType.argsType().get(1);
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   145
            if (!arg2.identicalTo(tright))
7f561c08de6b Initial load
duke
parents:
diff changeset
   146
                _right = new CastExpr(_right, arg1);
7f561c08de6b Initial load
duke
parents:
diff changeset
   147
            // Return the result type for the operator we will use
7f561c08de6b Initial load
duke
parents:
diff changeset
   148
            return _type = haveType.resultType();
7f561c08de6b Initial load
duke
parents:
diff changeset
   149
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   150
        throw new TypeCheckError(this);
7f561c08de6b Initial load
duke
parents:
diff changeset
   151
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   152
7f561c08de6b Initial load
duke
parents:
diff changeset
   153
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   154
     * Compile the expression - leave boolean expression on stack
7f561c08de6b Initial load
duke
parents:
diff changeset
   155
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   156
    public void translate(ClassGenerator classGen, MethodGenerator methodGen) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   157
        translateDesynthesized(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   158
        synthesize(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   159
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   160
7f561c08de6b Initial load
duke
parents:
diff changeset
   161
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   162
     * Compile expression and update true/false-lists
7f561c08de6b Initial load
duke
parents:
diff changeset
   163
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   164
    public void translateDesynthesized(ClassGenerator classGen,
7f561c08de6b Initial load
duke
parents:
diff changeset
   165
                                       MethodGenerator methodGen) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   166
7f561c08de6b Initial load
duke
parents:
diff changeset
   167
        final InstructionList il = methodGen.getInstructionList();
7f561c08de6b Initial load
duke
parents:
diff changeset
   168
        final SyntaxTreeNode parent = getParent();
7f561c08de6b Initial load
duke
parents:
diff changeset
   169
7f561c08de6b Initial load
duke
parents:
diff changeset
   170
        // Compile AND-expression
7f561c08de6b Initial load
duke
parents:
diff changeset
   171
        if (_op == AND) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   172
7f561c08de6b Initial load
duke
parents:
diff changeset
   173
            // Translate left hand side - must be true
7f561c08de6b Initial load
duke
parents:
diff changeset
   174
            _left.translateDesynthesized(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   175
7f561c08de6b Initial load
duke
parents:
diff changeset
   176
            // Need this for chaining any OR-expression children
7f561c08de6b Initial load
duke
parents:
diff changeset
   177
            InstructionHandle middle = il.append(NOP);
7f561c08de6b Initial load
duke
parents:
diff changeset
   178
7f561c08de6b Initial load
duke
parents:
diff changeset
   179
            // Translate left right side - must be true
7f561c08de6b Initial load
duke
parents:
diff changeset
   180
            _right.translateDesynthesized(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   181
7f561c08de6b Initial load
duke
parents:
diff changeset
   182
            // Need this for chaining any OR-expression children
7f561c08de6b Initial load
duke
parents:
diff changeset
   183
            InstructionHandle after = il.append(NOP);
7f561c08de6b Initial load
duke
parents:
diff changeset
   184
7f561c08de6b Initial load
duke
parents:
diff changeset
   185
            // Append child expression false-lists to our false-list
7f561c08de6b Initial load
duke
parents:
diff changeset
   186
            _falseList.append(_right._falseList.append(_left._falseList));
7f561c08de6b Initial load
duke
parents:
diff changeset
   187
7f561c08de6b Initial load
duke
parents:
diff changeset
   188
            // Special case for OR-expression as a left child of AND.
7f561c08de6b Initial load
duke
parents:
diff changeset
   189
            // The true-list of OR must point to second clause of AND.
7f561c08de6b Initial load
duke
parents:
diff changeset
   190
            if ((_left instanceof LogicalExpr) &&
7f561c08de6b Initial load
duke
parents:
diff changeset
   191
                (((LogicalExpr)_left).getOp() == OR)) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   192
                _left.backPatchTrueList(middle);
7f561c08de6b Initial load
duke
parents:
diff changeset
   193
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   194
            else if (_left instanceof NotCall) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   195
                _left.backPatchTrueList(middle);
7f561c08de6b Initial load
duke
parents:
diff changeset
   196
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   197
            else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   198
                _trueList.append(_left._trueList);
7f561c08de6b Initial load
duke
parents:
diff changeset
   199
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   200
7f561c08de6b Initial load
duke
parents:
diff changeset
   201
            // Special case for OR-expression as a right child of AND
7f561c08de6b Initial load
duke
parents:
diff changeset
   202
            // The true-list of OR must point to true-list of AND.
7f561c08de6b Initial load
duke
parents:
diff changeset
   203
            if ((_right instanceof LogicalExpr) &&
7f561c08de6b Initial load
duke
parents:
diff changeset
   204
                (((LogicalExpr)_right).getOp() == OR)) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   205
                _right.backPatchTrueList(after);
7f561c08de6b Initial load
duke
parents:
diff changeset
   206
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   207
            else if (_right instanceof NotCall) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   208
                _right.backPatchTrueList(after);
7f561c08de6b Initial load
duke
parents:
diff changeset
   209
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   210
            else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   211
                _trueList.append(_right._trueList);
7f561c08de6b Initial load
duke
parents:
diff changeset
   212
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   213
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   214
        // Compile OR-expression
7f561c08de6b Initial load
duke
parents:
diff changeset
   215
        else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   216
            // Translate left-hand side expression and produce true/false list
7f561c08de6b Initial load
duke
parents:
diff changeset
   217
            _left.translateDesynthesized(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   218
7f561c08de6b Initial load
duke
parents:
diff changeset
   219
            // This GOTO is used to skip over the code for the last test
7f561c08de6b Initial load
duke
parents:
diff changeset
   220
            // in the case where the the first test succeeds
7f561c08de6b Initial load
duke
parents:
diff changeset
   221
            InstructionHandle ih = il.append(new GOTO(null));
7f561c08de6b Initial load
duke
parents:
diff changeset
   222
7f561c08de6b Initial load
duke
parents:
diff changeset
   223
            // Translate right-hand side expression and produce true/false list
7f561c08de6b Initial load
duke
parents:
diff changeset
   224
            _right.translateDesynthesized(classGen, methodGen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   225
7f561c08de6b Initial load
duke
parents:
diff changeset
   226
            _left._trueList.backPatch(ih);
7f561c08de6b Initial load
duke
parents:
diff changeset
   227
            _left._falseList.backPatch(ih.getNext());
7f561c08de6b Initial load
duke
parents:
diff changeset
   228
7f561c08de6b Initial load
duke
parents:
diff changeset
   229
            _falseList.append(_right._falseList);
7f561c08de6b Initial load
duke
parents:
diff changeset
   230
            _trueList.add(ih).append(_right._trueList);
7f561c08de6b Initial load
duke
parents:
diff changeset
   231
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   232
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   233
}