Skip to content

Commit

Permalink
global using visitor.net
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepami committed Feb 16, 2024
1 parent edfbfae commit 097e1a0
Show file tree
Hide file tree
Showing 14 changed files with 2 additions and 14 deletions.
3 changes: 2 additions & 1 deletion Interpreter.Lib/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Global using directives

global using Expression = Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions.Expression;
global using Type = Interpreter.Lib.IR.CheckSemantics.Types.Type;
global using Type = Interpreter.Lib.IR.CheckSemantics.Types.Type;
global using Visitor.NET;
1 change: 0 additions & 1 deletion Interpreter.Lib/IR/Ast/AbstractSyntaxTreeNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Variables;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Declarations.AfterTypesAreLoaded;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Types;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Declarations.AfterTypesAreLoaded;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions;
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Declarations.AfterTypesAreLoaded;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions.PrimaryExpressions;
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Declarations;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Interpreter.Lib.IR.Ast.Impl.Nodes.Declarations.AfterTypesAreLoaded;
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions.ComplexLiterals;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Interpreter.Lib.BackEnd;
using Interpreter.Lib.IR.Ast.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions;

Expand Down
1 change: 0 additions & 1 deletion Interpreter.Lib/IR/Ast/Impl/Nodes/ScriptBody.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Interpreter.Lib.BackEnd;
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Interpreter.Lib.BackEnd;
using Interpreter.Lib.IR.Ast.Visitors;
using Interpreter.Lib.IR.CheckSemantics.Visitors;
using Visitor.NET;

namespace Interpreter.Lib.IR.Ast.Impl.Nodes.Statements;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Interpreter.Lib.IR.CheckSemantics.Types;
using Interpreter.Lib.IR.CheckSemantics.Variables.Symbols;
using Interpreter.Lib.IR.CheckSemantics.Visitors.Services;
using Visitor.NET;

namespace Interpreter.Lib.IR.CheckSemantics.Visitors;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using Interpreter.Lib.IR.CheckSemantics.Types;
using Interpreter.Lib.IR.CheckSemantics.Variables.Symbols;
using Interpreter.Lib.IR.CheckSemantics.Visitors.Services;
using Visitor.NET;

namespace Interpreter.Lib.IR.CheckSemantics.Visitors;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Interpreter.Lib.IR.Ast.Impl.Nodes.Expressions.ComplexLiterals;
using Interpreter.Lib.IR.Ast.Impl.Nodes.Statements;
using Interpreter.Lib.IR.CheckSemantics.Visitors.Services;
using Visitor.NET;

namespace Interpreter.Lib.IR.CheckSemantics.Visitors;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Interpreter.Lib.IR.CheckSemantics.Exceptions;
using Interpreter.Lib.IR.CheckSemantics.Variables.Symbols;
using Interpreter.Lib.IR.CheckSemantics.Visitors.Services;
using Visitor.NET;

namespace Interpreter.Lib.IR.CheckSemantics.Visitors;

Expand Down

0 comments on commit 097e1a0

Please sign in to comment.