Skip to content

Commit

Permalink
Add explanatory comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Shon Feder committed Jan 26, 2024
1 parent 0316cd8 commit eca5e83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quint/src/types/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export interface TypeScheme {

export type Signature = (_arity: number) => TypeScheme

// TODO: Why aren't we noting type variables in the schema here?
// Does not bind any type variables in `type`, which we take to assume
// that `type` has no free variables in the context.
export function toScheme(type: QuintType): TypeScheme {
return { typeVariables: new Set([]), rowVariables: new Set([]), type }
}
Expand Down

0 comments on commit eca5e83

Please sign in to comment.