2022-04-24 14:10:35 +00:00
|
|
|
#include "apfl.h"
|
|
|
|
|
|
|
|
|
|
const struct apfl_messages apfl_messages = {
|
2022-06-24 21:13:44 +00:00
|
|
|
.invalid_stack_index = "Invalid stack index",
|
2022-04-24 14:10:35 +00:00
|
|
|
.could_not_alloc_mem = "Could not allocate memory",
|
|
|
|
|
.input_error_while_parsing = "Input error while parsing",
|
|
|
|
|
.unexpected_end_of_file = "Unexpected end of file",
|
|
|
|
|
.feature_not_implemented = "Feature not implemented",
|
2022-06-24 21:13:44 +00:00
|
|
|
.corrupted_bytecode = "Bytecode is corrupted",
|
|
|
|
|
.not_a_list = "Value is not a list",
|
|
|
|
|
.not_a_dict = "Value is not a dictionary",
|
|
|
|
|
.key_doesnt_exist = "Key does not exist",
|
|
|
|
|
.value_is_not_a_container = "Value is not a container (list or dictionary)",
|
|
|
|
|
.wrong_key_type = "Wrong key type",
|
|
|
|
|
.variable_doesnt_exist = "Variable does not exist",
|
2022-04-24 14:10:35 +00:00
|
|
|
};
|