-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fixed #10 Support for tabs indentation
- Loading branch information
Showing
13 changed files
with
171 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,5 +99,4 @@ export class DocommentDomain implements IDocommentDomain { | |
// NOP | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
export class Configuration { | ||
|
||
/*------------------------------------------------------------------------- | ||
* Const | ||
* docomment | ||
*-----------------------------------------------------------------------*/ | ||
public static KEY: string = "docomment"; | ||
|
||
public static KEY_DOCOMMENT: string = "docomment"; | ||
public static ACTIVATE_ON_ENTER: string = "activateOnEnter"; | ||
|
||
public activateOnEnter: boolean; | ||
|
||
/*------------------------------------------------------------------------- | ||
* Field | ||
* editor | ||
*-----------------------------------------------------------------------*/ | ||
public activateOnEnter: Boolean; | ||
public static KEY_EDITOR: string = "editor"; | ||
public static INSERT_SPACES: string = "insertSpaces"; | ||
public static TAB_SIZE: string = "tabSize"; | ||
|
||
public insertSpaces: boolean; | ||
public tabSize: number; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
suite('Entity.Config.Contributes.Configuration Tests', () => { | ||
// NOP | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
"stopAtEntry": false | ||
}, | ||
{ | ||
"name": ".NET Core Launch (web)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
"stopAtEntry": false, | ||
"launchBrowser": { | ||
"enabled": true, | ||
"args": "${auto-detect-url}", | ||
"windows": { | ||
"command": "cmd.exe", | ||
"args": "/C start ${auto-detect-url}" | ||
}, | ||
"osx": { | ||
"command": "open" | ||
}, | ||
"linux": { | ||
"command": "xdg-open" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processName": "<example>" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"version": "0.1.0", | ||
"command": "dotnet", | ||
"isShellCommand": true, | ||
"args": [], | ||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
"args": [], | ||
"isBuildCommand": true, | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
using System; | ||
|
||
namespace N // "N:N" | ||
{ | ||
public unsafe class X // "T:N.X" | ||
{ | ||
public X(){} // "M:N.X.#ctor" | ||
public X(int i){} // "M:N.X.#ctor(System.Int32)" | ||
public string q; // "F:N.X.q" | ||
public const double PI = 3.14; // "F:N.X.PI" | ||
public int f(){return 1;} // "M:N.X.f" | ||
public int bb(string s, ref int y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
public int gg(short[] array1, int[,] array){return 0;} // "M:N.X.gg(System.Int16[], System.Int32[0:,0:])" | ||
public static X operator+(X x, X xx){return x;} // "M:N.X.op_Addition(N.X,N.X)" | ||
public int prop {get{return 1;} set{}} // "P:N.X.prop" | ||
public event D d; // "E:N.X.d" | ||
public int this[string s]{get{return 1;}} // "P:N.X.Item(System.String)" | ||
public class Nested{} // "T:N.X.Nested" | ||
public delegate void D(int i); // "T:N.X.D" | ||
public static explicit operator int(X x){return 1;} // "M:N.X.op_Explicit(N.X)~System.Int32" | ||
public DbSet<Director> Directors { get; set; } | ||
public List<int> bb<int>(string s, ref List<int> y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
int bb(string s, ref int y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
int Generate(int level); | ||
public void Save(string data, Action<AchievementSavedResponse> onComplete = null); | ||
Func<string, bool> FirstClassFunction(Func<bool, int> func); | ||
{ | ||
public unsafe class X // "T:N.X" | ||
{ | ||
public X(){} // "M:N.X.#ctor" | ||
public X(int i){} // "M:N.X.#ctor(System.Int32)" | ||
public string q; // "F:N.X.q" | ||
public const double PI = 3.14; // "F:N.X.PI" | ||
public int f(){return 1;} // "M:N.X.f" | ||
public int bb(string s, ref int y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
public int gg(short[] array1, int[,] array){return 0;} // "M:N.X.gg(System.Int16[], System.Int32[0:,0:])" | ||
public static X operator+(X x, X xx){return x;} // "M:N.X.op_Addition(N.X,N.X)" | ||
public int prop {get{return 1;} set{}} // "P:N.X.prop" | ||
public event D d; // "E:N.X.d" | ||
public int this[string s]{get{return 1;}} // "P:N.X.Item(System.String)" | ||
public class Nested{} // "T:N.X.Nested" | ||
public delegate void D(int i); // "T:N.X.D" | ||
public static explicit operator int(X x){return 1;} // "M:N.X.op_Explicit(N.X)~System.Int32" | ||
public DbSet<Director> Directors { get; set; } | ||
public List<int> bb<int>(string s, ref List<int> y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
int bb(string s, ref int y, void * z){return 1;} // "M:N.X.bb(System.String,System.Int32@,=System.Void*)" | ||
int Generate(int level); | ||
public void Save(string data, Action<AchievementSavedResponse> onComplete = null); | ||
Func<string, bool> FirstClassFunction(Func<bool, int> func); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters