source: src/AST/TypeVar.hpp @ 896737b

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 896737b was 9e1d485, checked in by Aaron Moss <a3moss@…>, 5 years ago

First draft of ast::Type with subclasses

  • Property mode set to 100644
File size: 705 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// TypeVar.hpp --
8//
9// Author           : Aaron B. Moss
10// Created On       : Wed May 15 15:00:00 2019
11// Last Modified By : Aaron B. Moss
12// Last Modified On : Wed May 15 15:00:00 2019
13// Update Count     : 1
14//
15
16#pragma once
17
18namespace ast {
19
20namespace TypeVar {
21
22/// type variable variants.
23/// `otype` is treated as a constrainted `dtype`
24enum Kind { Dtype, Ftype, Ttype, NUMBER_OF_KINDS };
25
26}
27
28}
29
30// Local Variables: //
31// tab-width: 4 //
32// mode: c++ //
33// compile-command: "make install" //
34// End: //
Note: See TracBrowser for help on using the repository browser.