mirror of
https://github.com/processing/processing4.git
synced 2026-01-30 03:41:15 +01:00
Allow access to PdePreprocessor constructor
This commit is contained in:
committed by
GitHub
parent
5faf2a10a6
commit
e38515cc6b
@@ -95,7 +95,7 @@ public class PdePreprocessor {
|
||||
* Create a new preprocessor.
|
||||
*
|
||||
* Create a new preprocessor that will use the following set of configuration values to process
|
||||
* a parse tree. This object should be instantiated by calling {builderFor}.
|
||||
* a parse tree. This object can be instantiated by calling {builderFor}.
|
||||
*
|
||||
* @param newSketchName The name of the sketch.
|
||||
* @param newTabSize The number of spaces within a tab.
|
||||
@@ -104,7 +104,7 @@ public class PdePreprocessor {
|
||||
* @param newFactory The factory to use for building the ANTLR tree traversal listener where
|
||||
* preprocessing edits should be made.
|
||||
*/
|
||||
private PdePreprocessor(final String newSketchName, final int newTabSize, boolean newIsTesting,
|
||||
public PdePreprocessor(final String newSketchName, final int newTabSize, boolean newIsTesting,
|
||||
final ParseTreeListenerFactory newFactory) {
|
||||
|
||||
sketchName = newSketchName;
|
||||
|
||||
Reference in New Issue
Block a user