Unnamed repository; edit this file 'description' to name the repository.
update constructor with new methods
bit-aloo 4 weeks ago
parent f444b0a · commit 842b330
-rw-r--r--crates/syntax/src/ast/syntax_factory/constructors.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/syntax/src/ast/syntax_factory/constructors.rs b/crates/syntax/src/ast/syntax_factory/constructors.rs
index 0f3b3d301c..885d48b064 100644
--- a/crates/syntax/src/ast/syntax_factory/constructors.rs
+++ b/crates/syntax/src/ast/syntax_factory/constructors.rs
@@ -491,6 +491,18 @@ impl SyntaxFactory {
ast
}
+ pub fn path_segment_self(&self) -> ast::PathSegment {
+ make::path_segment_self().clone_for_update()
+ }
+
+ pub fn path_segment_super(&self) -> ast::PathSegment {
+ make::path_segment_super().clone_for_update()
+ }
+
+ pub fn path_segment_crate(&self) -> ast::PathSegment {
+ make::path_segment_crate().clone_for_update()
+ }
+
pub fn generic_ty_path_segment(
&self,
name_ref: ast::NameRef,