Skip to content

Commit

Permalink
Merge pull request #331 from KisaragiEffective/feat/types/option
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective authored Dec 20, 2023
2 parents 55c9879 + b215de1 commit c8786df
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package/origlang-typesystem-model/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ pub enum Type {
/// value of this type is never dereferenced.
#[display(fmt = "&mut {_0}")]
RefMut(Box<Self>),
/// indicates that value may not present at memory location.
Option(Box<Self>)
}

impl Type {
Expand Down

0 comments on commit c8786df

Please sign in to comment.