Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInputDirectories (0.25 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

            for (File file : getGrammarFiles()) {
                commandLine.add(file.getAbsolutePath());
            }
    
            return commandLine;
        }
    
        public Set<File> getInputDirectories() {
            return inputDirectories;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

            /**
             * process used for antlr3/4
             */
            public AntlrResult doProcess(AntlrSpec spec) throws ClassNotFoundException {
                int numErrors = 0;
                if (spec.getInputDirectories().size() == 0) {
                    // we have not root source folder information for the grammar files,
                    // so we don't force relativeOutput as we can't calculate it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top