-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contains a few bugfixes
- Loading branch information
Showing
29 changed files
with
911 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
400 changes: 208 additions & 192 deletions
400
src/core/external/berry/generate/be_const_strtab_def.h
Large diffs are not rendered by default.
Oops, something went wrong.
66 changes: 34 additions & 32 deletions
66
src/core/external/berry/generate/be_fixed_be_class_bytes.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 10 additions & 8 deletions
18
src/core/external/berry/generate/be_fixed_be_class_range.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
#include "be_constobj.h" | ||
|
||
static be_define_const_map_slots(be_class_range_map) { | ||
{ be_const_key(__lower__, 8), be_const_var(0) }, | ||
{ be_const_key(__incr__, -1), be_const_var(1) }, | ||
{ be_const_key(setrange, -1), be_const_func(m_setrange) }, | ||
{ be_const_key(iter, -1), be_const_func(m_iter) }, | ||
{ be_const_key(__upper__, -1), be_const_var(2) }, | ||
{ be_const_key(init, -1), be_const_func(m_init) }, | ||
{ be_const_key(tostring, 4), be_const_func(m_tostring) }, | ||
{ be_const_key(incr, -1), be_const_func(m_incr) }, | ||
{ be_const_key(upper, 6), be_const_func(m_upper) }, | ||
{ be_const_key(lower, -1), be_const_func(m_lower) }, | ||
{ be_const_key(init, 4), be_const_func(m_init) }, | ||
{ be_const_key(__upper__, -1), be_const_var(0) }, | ||
{ be_const_key(tostring, -1), be_const_func(m_tostring) }, | ||
{ be_const_key(__lower__, -1), be_const_var(1) }, | ||
{ be_const_key(upper, 1), be_const_func(m_upper) }, | ||
{ be_const_key(iter, -1), be_const_func(m_iter) }, | ||
}; | ||
|
||
static be_define_const_map( | ||
be_class_range_map, | ||
8 | ||
10 | ||
); | ||
|
||
BE_EXPORT_VARIABLE be_define_const_class( | ||
be_class_range, | ||
2, | ||
3, | ||
NULL, | ||
range | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.