java.lang.Object
org.variantsync.diffdetective.variation.diff.parse.LogicalLine

class LogicalLine extends Object
A logical line consisting of multiple physical lines of a text file joined by line continuations. The concept of a logical line is used by the C11 standard to refer to one source code line of a source file after all line continuations have been eliminated. Essentially a logical line is a string matched by the regex ([^\n]|\\\n)* where \n represents the platform dependent line delimiter. In contrast, a physical line is matched by the regex [^\n]*.
Author:
Benjamin Moosherr