Examples of sourceFile()


Examples of org.gradle.integtests.fixtures.executer.ArtifactBuilder.sourceFile()

    }

    @Test
    public void inheritsClassPathOfParentProject() {
        ArtifactBuilder builder = artifactBuilder();
        builder.sourceFile("org/gradle/test/BuildClass.java").writelns(
                "package org.gradle.test;",
                "public class BuildClass { }"
        );
        builder.buildJar(testFile("repo/test-1.3.jar"));
        testFile("settings.gradle").writelns(
View Full Code Here

Examples of st.gravel.support.compiler.ast.SourcePosition.sourceFile()

  public String source() {
    SourcePosition sourcePosition = method.sourcePosition();
    if(sourcePosition == null)
      return method.prettySourceString();
    String contentsOfEntireFile = FilenameExtensions.contentsOfEntireFile(sourcePosition.sourceFile().asFile());
    return contentsOfEntireFile.substring(sourcePosition.start(), sourcePosition.stop());
  }
  public Symbol selector() {
    return Symbol.value(method.selector());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.