Package wyvern.tools.typedAST.core.declarations

Examples of wyvern.tools.typedAST.core.declarations.TypeDeclaration


  public TypeVarDecl(String name, DeclSequence body, TypedAST metadata, FileLocation fileLocation) {
    this.metadata = new Reference<Optional<TypedAST>>(Optional.ofNullable(metadata));
    this.name = name;
    this.metadataObj = new Reference<>();
    this.body = new TypeDeclaration(name, body, this.metadataObj, fileLocation);
    this.fileLocation = fileLocation;
  }
View Full Code Here


  public TypeVarDecl(String name, DeclSequence body, TaggedInfo taggedInfo, TypedAST metadata, FileLocation fileLocation) {
    this.metadata = new Reference<Optional<TypedAST>>(Optional.ofNullable(metadata));
    this.name = name;
    this.metadataObj = new Reference<>();
    this.body = new TypeDeclaration(name, body, this.metadataObj, taggedInfo, fileLocation);
    this.fileLocation = fileLocation;
  }
View Full Code Here

TOP

Related Classes of wyvern.tools.typedAST.core.declarations.TypeDeclaration

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.