Package dtool.ast.definitions

Examples of dtool.ast.definitions.DefVarFragment


      DefinitionVariable var = (DefinitionVariable) defUnit;
     
      return typeRefToUIString(var.type) + " " + var.getName();
    }
    case DEFINITION_VAR_FRAGMENT: {
      DefVarFragment fragment = (DefVarFragment) defUnit;
     
      return typeRefToUIString(fragment.getDeclaredType()) + " " + fragment.getName();
    }
   
    case DEFINITION_FUNCTION: {
      DefinitionFunction function = (DefinitionFunction) defUnit;
      cp.appendStrings(typeRefToUIString(function.retType), " ");
View Full Code Here


      } else if(isAutoRef) {
        parse.storeError(createExpectedTokenError(DeeTokens.ASSIGN));
      }
     
      while(parse.consumeOptional(DeeTokens.COMMA)) {
        DefVarFragment defVarFragment = parseVarFragment(isAutoRef);
        fragments = lazyInitArrayList(fragments);
        fragments.add(defVarFragment);
      }
    }
    parse.clearRuleBroken().consumeRequired(DeeTokens.SEMICOLON);
View Full Code Here

        init = parseInitializer().node;
      } else if(isAutoRef) {
        parse.storeError(createExpectedTokenError(DeeTokens.ASSIGN));
      }
    }
    return parse.conclude(new DefVarFragment(fragId, init));
  }
View Full Code Here

    case DEFINITION_VARIABLE: {
      DefinitionVariable elem = (DefinitionVariable) defUnit;
      return elem.getName() + getTypeSegment(elem.type) + getDefUnitContainerSuffix(defUnit);
    }
    case DEFINITION_VAR_FRAGMENT: {
      DefVarFragment elem = (DefVarFragment) defUnit;
      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.DefVarFragment

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.