Browse Source

Changed namespace of WithStatement to Jint.Parser.Ast, according to the other Ast nodes.

yallie 10 years ago
parent
commit
cc9e8c8f72
3 changed files with 9 additions and 3 deletions
  1. 7 0
      .editorconfig
  2. 1 0
      .gitignore
  3. 1 3
      Jint/Parser/Ast/WithStatement.cs

+ 7 - 0
.editorconfig

@@ -0,0 +1,7 @@
+# EditorConfig is awesome: http://EditorConfig.org
+# Visual Studio extension: https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328
+
+# 4 space indentation
+[*.cs]
+indent_style = space
+indent_size = 4

+ 1 - 0
.gitignore

@@ -152,3 +152,4 @@ $RECYCLE.BIN/
 # Mac crap
 .DS_Store
 Jint.sln.ide/*
+/Jint.sln.GhostDoc.xml

+ 1 - 3
Jint/Parser/Ast/WithStatement.cs

@@ -1,6 +1,4 @@
-using Jint.Parser.Ast;
-
-namespace Jint
+namespace Jint.Parser.Ast
 {
     public class WithStatement : Statement
     {