+100
Sources/PterodactylSyntax/BlockLayoutProcessor.swift
+100
Sources/PterodactylSyntax/BlockLayoutProcessor.swift
···+let startColumn = if lines.count > 1 { lines.last!.utf16.count } else { lines.last?.utf16.count ?? location.startColumn }+if !firstTokenInBlock && indentStack.count > 1 && locatedToken.location.startColumn == indentStack.last! {+if let nextToken = locatedTokens[index...].first(where: { $0.location.startLine > locatedToken.location.startLine && $0.token.kind.canDetermineLayoutColumn }) {
+25
Sources/PterodactylSyntax/Diagnostic.swift
+25
Sources/PterodactylSyntax/Diagnostic.swift
···
+4
-1
Sources/PterodactylSyntax/Lexer.swift
+4
-1
Sources/PterodactylSyntax/Lexer.swift
+12
-10
Sources/PterodactylSyntax/SyntaxTree.swift
+12
-10
Sources/PterodactylSyntax/SyntaxTree.swift
···-public init(kind: SyntaxTreeKind, metadata: SyntaxTreeMetadata?, children: [SyntaxTree.Child]) {+public init(kind: SyntaxTreeKind, metadata: SyntaxTreeMetadata? = nil, children: [SyntaxTree.Child]) {
+34
-2
Sources/PterodactylSyntax/Types.swift
+34
-2
Sources/PterodactylSyntax/Types.swift
·········