Created
March 19, 2018 15:04
-
-
Save lmcarreiro/6d5ec78b4d79ac526a08b3c289062743 to your computer and use it in GitHub Desktop.
Indented vs Not Indented
This file contains hidden or 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
| function Node(this: Node, kind: SyntaxKind, pos: number, end: number) { | |
| this.pos = pos; | |
| this.end = end; | |
| this.kind = kind; | |
| this.id = 0; | |
| this.flags = NodeFlags.None; | |
| this.modifierFlagsCache = ModifierFlags.None; | |
| this.transformFlags = TransformFlags.None; | |
| this.parent = undefined; | |
| this.original = undefined; | |
| } | |
| function Node(this: Node, kind: SyntaxKind, pos: number, end: number) { | |
| this.pos = pos ; | |
| this.end = end ; | |
| this.kind = kind ; | |
| this.id = 0 ; | |
| this.flags = NodeFlags.None ; | |
| this.modifierFlagsCache = ModifierFlags.None ; | |
| this.transformFlags = TransformFlags.None; | |
| this.parent = undefined ; | |
| this.original = undefined ; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment