Package dtool.ast.definitions

Examples of dtool.ast.definitions.FunctionParameter


      if(defId == null) {
        return conclude(sr,
          new NamelessParameter(arrayViewG(attribs), ref, paramDefault.toExpression().node, isVariadic));
      }
      return conclude(sr,
        new FunctionParameter(arrayViewG(attribs), ref, defId, paramDefault.toExpression().node, isVariadic));
    }
View Full Code Here


      Reference type = elem.getDeclaredType();
      return elem.getName() + getTypeSegment(type) + getDefUnitContainerSuffix(defUnit);
    }
   
    case FUNCTION_PARAMETER: {
      FunctionParameter elem = (FunctionParameter) defUnit;
      return elem.getName() + getTypeSegment(elem.type) + getDefUnitContainerSuffix(defUnit);
    }
   
    case DEFINITION_FUNCTION: {
      DefinitionFunction elem = (DefinitionFunction) defUnit;
      cp.append(elem.getName());
      cp.appendList("(", elem.tplParams, ",", ") ");
      cp.append(elem.toStringParametersForSignature());
      cp.append(getTypeSegment(elem.retType));
      cp.append(getDefUnitContainerSuffix(defUnit));
      return cp.toString();
    }
   
    case DEFINITION_ALIAS_FRAGMENT: {
      DefinitionAliasFragment elem = (DefinitionAliasFragment) defUnit;
      return elem.getName() + getAliasSegment(elem.target) + getDefUnitContainerSuffix(defUnit);
    }
    case DEFINITION_ALIAS_VAR_DECL: {
      DefinitionAliasVarDecl elem = (DefinitionAliasVarDecl) defUnit;
      return elem.getName() + getAliasSegment(elem.target) + getDefUnitContainerSuffix(defUnit);
    }
    case DEFINITION_ALIAS_FUNCTION_DECL: {
      DefinitionAliasFunctionDecl elem = (DefinitionAliasFunctionDecl) defUnit;
      // TODO: print a proper alias segment
      return elem.getName() + getAliasSegment(elem.target) + getDefUnitContainerSuffix(defUnit);
    }
   
   
    default: break;
    }
View Full Code Here

TOP

Related Classes of dtool.ast.definitions.FunctionParameter

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.