Package org.rascalmpl.ast

Examples of org.rascalmpl.ast.KeywordFormals$Default


      keywordParameterDefaults.put(label, init.getExpression());
    }
  }

  protected static List<KeywordFormal> getFormals(FunctionDeclaration func) {
    KeywordFormals keywordFormals = func.getSignature().getParameters().getKeywordFormals();
    return keywordFormals.hasKeywordFormalList() ? keywordFormals.getKeywordFormalList() : Collections.<KeywordFormal>emptyList();
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.ast.KeywordFormals$Default

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.