Package org.rascalmpl.library.experiments.resource.results.buffers

Examples of org.rascalmpl.library.experiments.resource.results.buffers.CharStreamFiller


public class CharStreamResult extends ResourceResult {

  public CharStreamResult(Type type, IValue value, IEvaluatorContext ctx, ISourceLocation fullURI, String displayURI) {
    super(type, value, ctx, fullURI, displayURI);
    URI uri = FileURIResolver.constructFileURI(fullURI.getURI().getPath());
    this.value = new LazyList(80, new CharStreamFiller(ValueFactoryFactory.getValueFactory().sourceLocation(uri), ctx), type.getElementType());
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.experiments.resource.results.buffers.CharStreamFiller

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.