package org.simantics.scl.compiler.completions.parsing; public class ModuleSegment { public final int begin; public final int end; public int parenthesesBalance; public boolean hasErrors; public ModuleSegment(int begin, int end, int parenthesesBalance, boolean hasErrors) { this.begin = begin; this.end = end; this.parenthesesBalance = parenthesesBalance; this.hasErrors = hasErrors; } }