TrimBehaviour

Description

enum Tinman.Core.Parsing.TrimBehaviour

Defines the whitespace trimming behaviour when writing source code.

Public / Constants

None

public constant None → (0:int32)

Text lines are output without trimming.

Whitespace

public constant Whitespace → (1:int32)

Each run of whitespace characters (see FormattingUtil.IsWhitespace) in a text line is replaced with a single ' ' character.

WhitespaceAndLineBreak

public constant WhitespaceAndLineBreak → (2:int32)

Each run of whitespace characters (see FormattingUtil.IsWhitespace) in the text is replaced with a single ' ' character.