Ignore:
Timestamp:
05/05/11 07:01:55 (13 years ago)
Author:
wschamai
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modelicaml/org.openmodelica.modelicaml.common/src/org/openmodelica/modelicaml/common/contentassist/ModelicaMLContentAssist.java

    r685 r728  
    408408    private static void addPredefinedVariablesToList(){
    409409        variablesList.add("time");
     410        variablesList.add("i"); // used for iterations in e.g. marco expansions.
    410411    }
    411412   
     
    447448        predefinedFunctionsList.add("Subtask.decouple");
    448449       
    449        
    450450        predefinedFunctionsList.add("initial");
    451451        predefinedFunctionsList.add("terminal");
     
    461461        predefinedFunctionsList.add("assert");
    462462       
     463        //Reduction Functions and Operators (see Modelica spec. 3.2)
     464        predefinedFunctionsList.add("min");
     465        predefinedFunctionsList.add("max");
     466        predefinedFunctionsList.add("sum");
     467        predefinedFunctionsList.add("product");
     468       
     469       
     470        // ModelicaML specific: used for Value Provider
     471        predefinedFunctionsList.add("getOwnPath");
     472
     473        // ModelicaML specific: used for Value Cleints and Mediators
     474        predefinedFunctionsList.add("getResult");
    463475    }
    464476   
Note: See TracChangeset for help on using the changeset viewer.