Package com.odiago.flumebase.lang

Examples of com.odiago.flumebase.lang.FnType


  /** The function instance itself. */
  private final Function mFunc;

  public FnSymbol(String name, Function func, Type retType, List<Type> argTypes,
      List<Type> varArgTypes) {
    super(name, new FnType(retType, argTypes, varArgTypes));
    mFunc = func;
    mRetType = retType;
    mArgTypes = argTypes;
    mVarArgTypes = varArgTypes;
  }
View Full Code Here

TOP

Related Classes of com.odiago.flumebase.lang.FnType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.