module volta.util.errormessages

Code for generating error message strings.

Code Map

//! Code for generating error message strings.
module volta.util.errormessages;


fn badAbstractMsg() string { }
fn badFinalMsg() string { }
fn shadowsDeclarationMsg(node: ir.Node) string { }
fn abstractHasToBeMemberMsg(func: ir.Function) string { }
fn anonymousAggregateAtTopLevelMsg() string { }
fn abstractBodyNotEmptyMsg(func: ir.Function) string { }
fn nonTopLevelImportMsg() string { }
fn cannotImportMsg(name: string) string { }
fn cannotImportAnonymousMsg(name: string) string { }
fn redefinesSymbolMsg(name: string, loc: const(Location)) string { }
fn overloadFunctionAccessMismatchMsg(importAccess: ir.Access, a: ir.Alias, b: ir.Function) string { }
fn scopeOutsideFunctionMsg() string { }
fn returnInsideScopeMsg() string { }
fn scopeInsideScopeMsg() string { }