Update binary expression inference, see #35; Update dependencies

This commit is contained in:
dcodeIO
2018-03-01 19:42:07 +01:00
parent 02dce5a518
commit 4633fdab96
26 changed files with 6342 additions and 3057 deletions

View File

@ -185,8 +185,8 @@ export { usize };
@builtin
declare function bool(value: void): bool;
namespace bool {
export const MIN_VALUE: bool = 0;
export const MAX_VALUE: bool = 1;
export const MIN_VALUE: bool = false;
export const MAX_VALUE: bool = true;
}
export { bool };