public ContinueOutOfLoopScopeError(SourceLocation location, LoopScope scope)
     : base(location)
 {
     _scope = scope;
 }
 public BreakOutOfLoopScopeError(SourceLocation location, LoopScope scope)
     : base(location)
 {
     _scope = scope;
 }