Added file name + line number to symbols and use it for reasonable error handling now, added a version number to the compiled grammer
This commit is contained in:
34
kraken.krak
34
kraken.krak
@@ -21,6 +21,7 @@ fun main(argc: int, argv: **char):int {
|
|||||||
println(file_name)
|
println(file_name)
|
||||||
|
|
||||||
var compiled_name = file_name + string(".comp_new")
|
var compiled_name = file_name + string(".comp_new")
|
||||||
|
var compiled_version = 1
|
||||||
var file_contents = read_file(file_name)
|
var file_contents = read_file(file_name)
|
||||||
var loaded_and_valid = false
|
var loaded_and_valid = false
|
||||||
|
|
||||||
@@ -29,23 +30,20 @@ fun main(argc: int, argv: **char):int {
|
|||||||
var pos = 0
|
var pos = 0
|
||||||
var binary = read_file_binary(compiled_name)
|
var binary = read_file_binary(compiled_name)
|
||||||
println("read file!")
|
println("read file!")
|
||||||
var cached_contents = string()
|
var saved_version = 0
|
||||||
unpack(cached_contents, pos) = unserialize<string>(binary, pos)
|
unpack(saved_version, pos) = unserialize<int>(binary, pos)
|
||||||
if (cached_contents == file_contents) {
|
if (saved_version == compiled_version) {
|
||||||
println("loaded_and_valid, using cached version!")
|
var cached_contents = string()
|
||||||
loaded_and_valid = true
|
unpack(cached_contents, pos) = unserialize<string>(binary, pos)
|
||||||
/*unpack(gram, pos) = unserialize<grammer>(binary, pos)*/
|
if (cached_contents == file_contents) {
|
||||||
// skip unnecessary copies this way
|
println("loaded_and_valid, using cached version!")
|
||||||
pos = gram.unserialize(binary, pos)
|
loaded_and_valid = true
|
||||||
println("finished unserializeing!!")
|
/*unpack(gram, pos) = unserialize<grammer>(binary, pos)*/
|
||||||
} else {
|
// skip unnecessary copies this way
|
||||||
/*println("file contents do not match:")*/
|
pos = gram.unserialize(binary, pos)
|
||||||
/*println("CACHED:")*/
|
println("finished unserializeing!!")
|
||||||
/*println(cached_contents)*/
|
} else println("contents different")
|
||||||
/*println("REAL:")*/
|
} else println("version number different")
|
||||||
/*println(file_contents)*/
|
|
||||||
/*println("END")*/
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
println("cached file does not exist")
|
println("cached file does not exist")
|
||||||
}
|
}
|
||||||
@@ -59,7 +57,7 @@ fun main(argc: int, argv: **char):int {
|
|||||||
println("grammer loaded, calculate_state_automaton")
|
println("grammer loaded, calculate_state_automaton")
|
||||||
gram.calculate_state_automaton()
|
gram.calculate_state_automaton()
|
||||||
println("calculated, writing out")
|
println("calculated, writing out")
|
||||||
write_file_binary(compiled_name, serialize(file_contents) + serialize(gram))
|
write_file_binary(compiled_name, serialize(compiled_version) + serialize(file_contents) + serialize(gram))
|
||||||
println("done writing")
|
println("done writing")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -222,11 +222,16 @@ obj ast_transformation (Object) {
|
|||||||
var return_type = null<type>()
|
var return_type = null<type>()
|
||||||
if (typed_return_node) return_type = transform_type(get_node("type", typed_return_node), scope, template_replacements)
|
if (typed_return_node) return_type = transform_type(get_node("type", typed_return_node), scope, template_replacements)
|
||||||
else return_type = type_ptr(base_type::void_return())
|
else return_type = type_ptr(base_type::void_return())
|
||||||
|
if (return_type->is_none())
|
||||||
|
error(node, "return type none")
|
||||||
// transform parameters
|
// transform parameters
|
||||||
var parameters = vector<*ast_node>()
|
var parameters = vector<*ast_node>()
|
||||||
get_nodes("typed_parameter", node).for_each(fun(child: *tree<symbol>) {
|
get_nodes("typed_parameter", node).for_each(fun(child: *tree<symbol>) {
|
||||||
// note the temporary null<ast_node>() which gets replaced below, as the dependency is circular
|
// note the temporary null<ast_node>() which gets replaced below, as the dependency is circular
|
||||||
parameters.add(ast_identifier_ptr(concat_symbol_tree(get_node("identifier", child)), transform_type(get_node("type", child), scope, template_replacements), null<ast_node>()))
|
var param_type = transform_type(get_node("type", child), scope, template_replacements)
|
||||||
|
if (param_type->is_none())
|
||||||
|
error(child, "parameter type none")
|
||||||
|
parameters.add(ast_identifier_ptr(concat_symbol_tree(get_node("identifier", child)), param_type, null<ast_node>()))
|
||||||
})
|
})
|
||||||
// figure out function type and make function_node
|
// figure out function type and make function_node
|
||||||
var function_node = ast_function_ptr(function_name, type_ptr(parameters.map(fun(parameter: *ast_node): *type return parameter->identifier.type;), return_type), parameters)
|
var function_node = ast_function_ptr(function_name, type_ptr(parameters.map(fun(parameter: *ast_node): *type return parameter->identifier.type;), return_type), parameters)
|
||||||
@@ -351,12 +356,12 @@ obj ast_transformation (Object) {
|
|||||||
key.for_each(fun(t: type) hasTypStr += t.to_string(false) + " ";)
|
key.for_each(fun(t: type) hasTypStr += t.to_string(false) + " ";)
|
||||||
/*print(hasTypStr)*/
|
/*print(hasTypStr)*/
|
||||||
if (typeStr == hasTypStr)
|
if (typeStr == hasTypStr)
|
||||||
error("they're equal but really shouldnt be")
|
error(node, "they're equal but really shouldnt be")
|
||||||
/*println()*/
|
/*println()*/
|
||||||
})
|
})
|
||||||
/*println("donr")*/
|
/*println("donr")*/
|
||||||
if (real_types.any_true(fun(t: *type): bool return t->is_none() || t ->is_template_type();)) {
|
if (real_types.any_true(fun(t: *type): bool return t->is_none() || t ->is_template_type();)) {
|
||||||
error("Instantiating types for templated object are not all real types!")
|
error(node, "Instantiating types for templated object are not all real types!")
|
||||||
}
|
}
|
||||||
inst_type = first_pass_type_def(results[i]->template.syntax_node, results[i], true)
|
inst_type = first_pass_type_def(results[i]->template.syntax_node, results[i], true)
|
||||||
// no change up it's name so we can see that it's instantiated when printed out and keep track of it
|
// no change up it's name so we can see that it's instantiated when printed out and keep track of it
|
||||||
@@ -372,7 +377,7 @@ obj ast_transformation (Object) {
|
|||||||
}
|
}
|
||||||
if (fitting_types.size == 0) {
|
if (fitting_types.size == 0) {
|
||||||
println("no working templated object found")
|
println("no working templated object found")
|
||||||
error("FREAK OUT AUTOMATON")
|
error(node, "FREAK OUT AUTOMATON")
|
||||||
return null<type>()
|
return null<type>()
|
||||||
}
|
}
|
||||||
return fitting_types.max(fun(a: pair<*ast_node, int>, b: pair<*ast_node, int>): bool return a.second < b.second;).first->type_def.self_type->clone_with_indirection(indirection, is_ref)
|
return fitting_types.max(fun(a: pair<*ast_node, int>, b: pair<*ast_node, int>): bool return a.second < b.second;).first->type_def.self_type->clone_with_indirection(indirection, is_ref)
|
||||||
@@ -466,7 +471,7 @@ obj ast_transformation (Object) {
|
|||||||
return transform_value(node, scope)
|
return transform_value(node, scope)
|
||||||
}
|
}
|
||||||
print("FAILED TO TRANSFORM: "); print(name + ": "); println(concat_symbol_tree(node))
|
print("FAILED TO TRANSFORM: "); print(name + ": "); println(concat_symbol_tree(node))
|
||||||
error("FAILED TO TRANSFORM")
|
error(node, "FAILED TO TRANSFORM")
|
||||||
return null<ast_node>()
|
return null<ast_node>()
|
||||||
}
|
}
|
||||||
fun transform_all(nodes: vector<*tree<symbol>>, scope: *ast_node, template_replacements: map<string, *type>): vector<*ast_node> {
|
fun transform_all(nodes: vector<*tree<symbol>>, scope: *ast_node, template_replacements: map<string, *type>): vector<*ast_node> {
|
||||||
@@ -593,7 +598,8 @@ obj ast_transformation (Object) {
|
|||||||
if (!type_syntax_node)
|
if (!type_syntax_node)
|
||||||
identifier->identifier.type = get_ast_type(expression)->clone_without_ref()
|
identifier->identifier.type = get_ast_type(expression)->clone_without_ref()
|
||||||
}
|
}
|
||||||
if (!identifier->identifier.type) error("declaration statement with no type or expression from which to inference type")
|
if (!identifier->identifier.type) error(node, "declaration statement with no type or expression from which to inference type")
|
||||||
|
if (identifier->identifier.type->is_none()) error(node, "declaration statement with bad type")
|
||||||
var declaration = ast_declaration_statement_ptr(identifier, expression)
|
var declaration = ast_declaration_statement_ptr(identifier, expression)
|
||||||
// ok, deal with the possible init position method call
|
// ok, deal with the possible init position method call
|
||||||
if (identifiers.size == 2) {
|
if (identifiers.size == 2) {
|
||||||
@@ -713,7 +719,7 @@ obj ast_transformation (Object) {
|
|||||||
var to_ret = ast_case_statement_ptr()
|
var to_ret = ast_case_statement_ptr()
|
||||||
var the_adts = scope_lookup(concat_symbol_tree(get_node("scoped_identifier", get_node("scoped_identifier", node))), scope)
|
var the_adts = scope_lookup(concat_symbol_tree(get_node("scoped_identifier", get_node("scoped_identifier", node))), scope)
|
||||||
if (the_adts.size != 1)
|
if (the_adts.size != 1)
|
||||||
error(string("the number of adts found was not 1, it was ") + the_adts.size + " for " + concat_symbol_tree(get_node("scoped_identifier", node)))
|
error(node, string("the number of adts found was not 1, it was ") + the_adts.size + " for " + concat_symbol_tree(get_node("scoped_identifier", node)))
|
||||||
var the_adt = the_adts[0]
|
var the_adt = the_adts[0]
|
||||||
var the_option_name = concat_symbol_tree(get_node("identifier", get_node("scoped_identifier", node)))
|
var the_option_name = concat_symbol_tree(get_node("identifier", get_node("scoped_identifier", node)))
|
||||||
var the_option = the_adt->adt_def.options.find_first_satisfying(fun(option: *ast_node): bool return option->identifier.name == the_option_name;)
|
var the_option = the_adt->adt_def.options.find_first_satisfying(fun(option: *ast_node): bool return option->identifier.name == the_option_name;)
|
||||||
@@ -850,7 +856,7 @@ obj ast_transformation (Object) {
|
|||||||
search_type::function(type_vec) possible_value = find_or_instantiate_template_function(concat_symbol_tree(node->children[0]), null<tree<symbol>>(), scope, type_vec, template_replacements, map<string, *type>());
|
search_type::function(type_vec) possible_value = find_or_instantiate_template_function(concat_symbol_tree(node->children[0]), null<tree<symbol>>(), scope, type_vec, template_replacements, map<string, *type>());
|
||||||
}
|
}
|
||||||
if (!possible_value)
|
if (!possible_value)
|
||||||
error(concat_symbol_tree(node) + ": HAS NO POSSIBLE FUNCTION OR FUNCTION TEMPLATE SOLUTIONS")
|
error(node, concat_symbol_tree(node) + ": HAS NO POSSIBLE FUNCTION OR FUNCTION TEMPLATE SOLUTIONS")
|
||||||
return possible_value
|
return possible_value
|
||||||
} else if (node->children.size == 2) {
|
} else if (node->children.size == 2) {
|
||||||
var template_inst = get_node("template_inst", node)
|
var template_inst = get_node("template_inst", node)
|
||||||
@@ -859,11 +865,11 @@ obj ast_transformation (Object) {
|
|||||||
var result = null<ast_node>()
|
var result = null<ast_node>()
|
||||||
match (searching_for) {
|
match (searching_for) {
|
||||||
// I guess this should never happen?
|
// I guess this should never happen?
|
||||||
search_type::none() error("TE<PLATE LOOKUO MAKES NO SENSE")
|
search_type::none() error(template_inst, "TEMPLATE LOOKUP WITHOUT PERENS ()")
|
||||||
search_type::function(type_vec) result = find_or_instantiate_template_function(concat_symbol_tree(identifier), template_inst, scope, type_vec, template_replacements, map<string, *type>())
|
search_type::function(type_vec) result = find_or_instantiate_template_function(concat_symbol_tree(identifier), template_inst, scope, type_vec, template_replacements, map<string, *type>())
|
||||||
}
|
}
|
||||||
if (!result)
|
if (!result)
|
||||||
error("Could not find templated function " + concat_symbol_tree(identifier) + " even though had a template_inst")
|
error(node, "Could not find templated function " + concat_symbol_tree(identifier) + " even though had a template_inst")
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
var check_if_post = concat_symbol_tree(node->children[1])
|
var check_if_post = concat_symbol_tree(node->children[1])
|
||||||
@@ -902,7 +908,7 @@ obj ast_transformation (Object) {
|
|||||||
/*println("PRE TEMPLATE TRY FOR SECOND PARAM")*/
|
/*println("PRE TEMPLATE TRY FOR SECOND PARAM")*/
|
||||||
second_param = find_or_instantiate_template_function(method_name, template_inst, get_ast_type(first_param)->type_def, type_vec, template_replacements, inherited_replacements);
|
second_param = find_or_instantiate_template_function(method_name, template_inst, get_ast_type(first_param)->type_def, type_vec, template_replacements, inherited_replacements);
|
||||||
if (!second_param) {
|
if (!second_param) {
|
||||||
error("Could not find method " + method_name + " on the right side of (. or ->) " + concat_symbol_tree(node->children[0]) +
|
error(node, "Could not find method " + method_name + " on the right side of (. or ->) " + concat_symbol_tree(node->children[0]) +
|
||||||
", whole string: " + concat_symbol_tree(node) + ", left type: " + get_ast_type(first_param)->to_string())
|
", whole string: " + concat_symbol_tree(node) + ", left type: " + get_ast_type(first_param)->to_string())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1151,7 +1157,7 @@ fun unify_type(template_type: *tree<symbol>, param_type: *type, new_map: *map<st
|
|||||||
} else {
|
} else {
|
||||||
println(template_type->children[0]->data.name)
|
println(template_type->children[0]->data.name)
|
||||||
println(template_type->children[0]->data.data)
|
println(template_type->children[0]->data.data)
|
||||||
error("TYPE INFERENCE NOT GOOD ENOUGH")
|
error(template_type, "TYPE INFERENCE NOT GOOD ENOUGH")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fun function_satisfies_params(node: *ast_node, param_types: vector<*type>): bool {
|
fun function_satisfies_params(node: *ast_node, param_types: vector<*type>): bool {
|
||||||
@@ -1263,7 +1269,7 @@ fun get_node(lookup: *char, parent: *tree<symbol>): *tree<symbol> {
|
|||||||
fun get_node(lookup: string, parent: *tree<symbol>): *tree<symbol> {
|
fun get_node(lookup: string, parent: *tree<symbol>): *tree<symbol> {
|
||||||
var results = get_nodes(lookup, parent)
|
var results = get_nodes(lookup, parent)
|
||||||
if (results.size > 1)
|
if (results.size > 1)
|
||||||
error("get node too many results!")
|
error(parent, "get node too many results!")
|
||||||
if (results.size)
|
if (results.size)
|
||||||
return results[0]
|
return results[0]
|
||||||
return null<tree<symbol>>()
|
return null<tree<symbol>>()
|
||||||
@@ -1284,9 +1290,24 @@ fun add_to_scope(name: string, to_add: *ast_node, add_to: *ast_node) {
|
|||||||
else
|
else
|
||||||
add_to_map->set(name, vector(to_add))
|
add_to_map->set(name, vector(to_add))
|
||||||
}
|
}
|
||||||
|
fun get_first_terminal(source: *tree<symbol>): *tree<symbol> {
|
||||||
|
if (!source)
|
||||||
|
return null<tree<symbol>>()
|
||||||
|
if (source->data.terminal)
|
||||||
|
return source
|
||||||
|
if (source->children.size == 0)
|
||||||
|
return null<tree<symbol>>()
|
||||||
|
return get_first_terminal(source->children.first())
|
||||||
|
}
|
||||||
fun error(message: *char) error(string(message));
|
fun error(message: *char) error(string(message));
|
||||||
fun error(message: string) {
|
fun error(source: *tree<symbol>, message: *char) error(source, string(message));
|
||||||
|
fun error(message: string) error(null<tree<symbol>>(), message);
|
||||||
|
fun error(source: *tree<symbol>, message: string) {
|
||||||
println("****ERROR****")
|
println("****ERROR****")
|
||||||
|
source = get_first_terminal(source)
|
||||||
|
if (source) {
|
||||||
|
print(source->data.source + ": " + source->data.position + " ")
|
||||||
|
}
|
||||||
println(message)
|
println(message)
|
||||||
exit(-1)
|
exit(-1)
|
||||||
/*while (true){}*/
|
/*while (true){}*/
|
||||||
|
|||||||
@@ -85,7 +85,14 @@ obj lexer (Object) {
|
|||||||
if (max < 0)
|
if (max < 0)
|
||||||
return symbol::invalid_symbol()
|
return symbol::invalid_symbol()
|
||||||
position += max_length
|
position += max_length
|
||||||
return symbol::symbol(regs[max].first, true, input.slice(position-max_length, position))
|
var line_number = fun(str: ref string::string, pos: int): int {
|
||||||
|
var line_no = 1
|
||||||
|
for (var i = 0; i < pos; i++;)
|
||||||
|
if (str[i] == '\n')
|
||||||
|
line_no++
|
||||||
|
return line_no
|
||||||
|
}
|
||||||
|
return symbol::symbol(regs[max].first, true, input.slice(position-max_length, position), line_number(input, position))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -75,6 +75,8 @@ obj parser (Object) {
|
|||||||
for (current_symbol = lex.next(); current_symbol != eof_symbol() && current_symbol != invalid_symbol(); current_symbol = lex.next();) {
|
for (current_symbol = lex.next(); current_symbol != eof_symbol() && current_symbol != invalid_symbol(); current_symbol = lex.next();) {
|
||||||
/*println("current_symbol is ")*/
|
/*println("current_symbol is ")*/
|
||||||
/*println(current_symbol.to_string())*/
|
/*println(current_symbol.to_string())*/
|
||||||
|
if (current_symbol != eof_symbol() && current_symbol != invalid_symbol())
|
||||||
|
current_symbol.source = name
|
||||||
input.addEnd(current_symbol)
|
input.addEnd(current_symbol)
|
||||||
}
|
}
|
||||||
input.addEnd(current_symbol)
|
input.addEnd(current_symbol)
|
||||||
|
|||||||
@@ -31,8 +31,11 @@ fun symbol(nameIn: *char, terminalIn: bool, dataIn: *char): symbol {
|
|||||||
return toRet
|
return toRet
|
||||||
}
|
}
|
||||||
|
|
||||||
fun symbol(nameIn: string::string, terminalIn: bool, dataIn: string::string): symbol {
|
fun symbol(nameIn: string::string, terminalIn: bool, dataIn: string::string): symbol return symbol(nameIn, terminalIn, dataIn, 0)
|
||||||
|
|
||||||
|
fun symbol(nameIn: string::string, terminalIn: bool, dataIn: string::string, position: int): symbol {
|
||||||
var toRet.construct(nameIn, terminalIn, dataIn): symbol
|
var toRet.construct(nameIn, terminalIn, dataIn): symbol
|
||||||
|
toRet.position = position
|
||||||
return toRet
|
return toRet
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,32 +44,43 @@ obj symbol (Object, Serializable) {
|
|||||||
var name: string::string
|
var name: string::string
|
||||||
var terminal: bool
|
var terminal: bool
|
||||||
|
|
||||||
|
var source: string::string
|
||||||
|
var position: int
|
||||||
|
|
||||||
fun construct(): *symbol {
|
fun construct(): *symbol {
|
||||||
data.construct()
|
data.construct()
|
||||||
name.construct()
|
name.construct()
|
||||||
|
terminal = false
|
||||||
|
source.construct()
|
||||||
|
position = 0
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
fun construct(nameIn: string::string, terminalIn: bool, dataIn: string::string): *symbol {
|
fun construct(nameIn: string::string, terminalIn: bool, dataIn: string::string): *symbol {
|
||||||
name.construct(nameIn)
|
name.construct(nameIn)
|
||||||
terminal = terminalIn
|
terminal = terminalIn
|
||||||
data.construct(dataIn)
|
data.construct(dataIn)
|
||||||
|
source.construct()
|
||||||
|
position = 0
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
fun destruct() {
|
fun destruct() {
|
||||||
data.destruct()
|
data.destruct()
|
||||||
name.destruct()
|
name.destruct()
|
||||||
|
source.destruct()
|
||||||
}
|
}
|
||||||
fun copy_construct(old: *symbol) {
|
fun copy_construct(old: *symbol) {
|
||||||
data.copy_construct(&old->data)
|
data.copy_construct(&old->data)
|
||||||
name.copy_construct(&old->name)
|
name.copy_construct(&old->name)
|
||||||
terminal = old->terminal
|
terminal = old->terminal
|
||||||
|
source.copy_construct(&old->source)
|
||||||
|
position = old->position
|
||||||
}
|
}
|
||||||
fun operator=(old: ref symbol) {
|
fun operator=(old: ref symbol) {
|
||||||
destruct()
|
destruct()
|
||||||
copy_construct(&old)
|
copy_construct(&old)
|
||||||
}
|
}
|
||||||
fun serialize(): vector::vector<char> {
|
fun serialize(): vector::vector<char> {
|
||||||
return serialize::serialize(data) + serialize::serialize(name) + serialize::serialize(terminal)
|
return serialize::serialize(data) + serialize::serialize(name) + serialize::serialize(terminal) + serialize::serialize(source) + serialize::serialize(position)
|
||||||
}
|
}
|
||||||
fun unserialize(it: ref vector::vector<char>, pos: int): int {
|
fun unserialize(it: ref vector::vector<char>, pos: int): int {
|
||||||
/*construct()*/
|
/*construct()*/
|
||||||
@@ -75,13 +89,15 @@ obj symbol (Object, Serializable) {
|
|||||||
pos = data.unserialize(it, pos)
|
pos = data.unserialize(it, pos)
|
||||||
pos = name.unserialize(it, pos)
|
pos = name.unserialize(it, pos)
|
||||||
util::unpack(terminal, pos) = serialize::unserialize<bool>(it, pos)
|
util::unpack(terminal, pos) = serialize::unserialize<bool>(it, pos)
|
||||||
|
pos = source.unserialize(it, pos)
|
||||||
|
util::unpack(position, pos) = serialize::unserialize<int>(it, pos)
|
||||||
return pos
|
return pos
|
||||||
}
|
}
|
||||||
fun equal_wo_data(other: ref symbol): bool {
|
fun equal_wo_data(other: ref symbol): bool {
|
||||||
return name == other.name && terminal == other.terminal;
|
return name == other.name && terminal == other.terminal;
|
||||||
}
|
}
|
||||||
fun operator==(other: ref symbol): bool {
|
fun operator==(other: ref symbol): bool {
|
||||||
return data == other.data && name == other.name && terminal == other.terminal;
|
return data == other.data && name == other.name && terminal == other.terminal && source == other.source && position == other.position
|
||||||
}
|
}
|
||||||
fun operator!=(other: ref symbol): bool {
|
fun operator!=(other: ref symbol): bool {
|
||||||
return !(*this == other);
|
return !(*this == other);
|
||||||
@@ -92,7 +108,7 @@ obj symbol (Object, Serializable) {
|
|||||||
terminalString = "true"
|
terminalString = "true"
|
||||||
else
|
else
|
||||||
terminalString = "false"
|
terminalString = "false"
|
||||||
return name + ": " + data + " " + terminalString
|
return name + ": " + data + " " + terminalString + "[" + source + ":" + position + "]"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
13
tests/error_test.krak
Normal file
13
tests/error_test.krak
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import mem:*
|
||||||
|
import vector:*
|
||||||
|
|
||||||
|
|
||||||
|
fun main():int {
|
||||||
|
var a = null<vector<bad>>()
|
||||||
|
/*doesnt_exist(2)*/
|
||||||
|
/*var b: doesnt_exist*/
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,22 +1,22 @@
|
|||||||
a+: aaaa true
|
a+: aaaa true[:1]
|
||||||
test: test true
|
test: test true[:1]
|
||||||
old contributed tests
|
old contributed tests
|
||||||
b: b true
|
b: b true[:1]
|
||||||
b: b true
|
b: b true[:1]
|
||||||
$EOF$: $EOF$ false
|
$EOF$: $EOF$ false[:0]
|
||||||
|
|
||||||
a*: aaa true
|
a*: aaa true[:1]
|
||||||
b: b true
|
b: b true[:1]
|
||||||
a*: aa true
|
a*: aa true[:1]
|
||||||
b: b true
|
b: b true[:1]
|
||||||
b: b true
|
b: b true[:1]
|
||||||
$EOF$: $EOF$ false
|
$EOF$: $EOF$ false[:0]
|
||||||
|
|
||||||
a|b: b true
|
a|b: b true[:1]
|
||||||
$INVALID$: $INVALID$ false
|
$INVALID$: $INVALID$ false[:0]
|
||||||
|
|
||||||
xyzzy: xyzzy true
|
xyzzy: xyzzy true[:1]
|
||||||
$EOF$: $EOF$ false
|
$EOF$: $EOF$ false[:0]
|
||||||
|
|
||||||
(i|n|t|e)+: intent true
|
(i|n|t|e)+: intent true[:1]
|
||||||
$EOF$: $EOF$ false
|
$EOF$: $EOF$ false[:0]
|
||||||
|
|||||||
Reference in New Issue
Block a user