We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aacaad9 commit c0cf132Copy full SHA for c0cf132
Orm/Xtensive.Orm/Sql/Compiler/Internals/Nodes/TextNode.cs
@@ -14,8 +14,6 @@ internal class TextNode : Node
14
15
public readonly string Text;
16
17
- internal override void AcceptVisitor(NodeVisitor visitor) => visitor.Visit(this);
18
-
19
public static TextNode Create(string text)
20
{
21
if (text.Length < 3) {
@@ -27,6 +25,8 @@ public static TextNode Create(string text)
27
25
return new TextNode(text);
28
26
}
29
+ internal override void AcceptVisitor(NodeVisitor visitor) => visitor.Visit(this);
+
30
// Constructor
31
32
private TextNode(string text)
0 commit comments