We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Parser.Builder
1 parent 4ebdd96 commit e165986Copy full SHA for e165986
src/main/java/ch/usi/si/seart/treesitter/Parser.java
@@ -87,6 +87,14 @@ public Builder toBuilder() {
87
return builder().language(getLanguage()).timeout(getTimeout());
88
}
89
90
+ /**
91
+ * Facilitates the construction of Parser instances.
92
+ * It allows for the step-by-step creation of these objects
93
+ * by providing methods for setting individual attributes.
94
+ * Input validations are performed at each build step.
95
+ *
96
+ * @since 1.7.0
97
+ */
98
@FieldDefaults(level = AccessLevel.PRIVATE)
99
@NoArgsConstructor(access = AccessLevel.PRIVATE)
100
public static class Builder {
0 commit comments