File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed
Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 11namespace Fantomas.Core
22
3+ /// Represents a single event emitted during the code formatting process.
4+ /// The sequence of writer events captures how the formatter produces its output.
5+ [<Struct>]
36type WriterEvent =
4- | Write of string
7+ | Write of text : string
58 | WriteLine
69 | WriteLineInsideStringConst
7- | WriteBeforeNewline of string
10+ | WriteBeforeNewline of content : string
811 | WriteLineBecauseOfTrivia
912 | WriteLineInsideTrivia
10- | IndentBy of int
11- | UnIndentBy of int
12- | SetIndent of int
13- | RestoreIndent of int
14- | SetAtColumn of int
15- | RestoreAtColumn of int
13+ | IndentBy of indent : int
14+ | UnIndentBy of unindent : int
15+ | SetIndent of setIndent : int
16+ | RestoreIndent of restoreIndent : int
17+ | SetAtColumn of setAtColumn : int
18+ | RestoreAtColumn of restoreAtColumn : int
You can’t perform that action at this time.
0 commit comments