Implements numeric for loops
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-06-22 17:35:33 +02:00
parent 694b0ac0c0
commit e472dcec1c
16 changed files with 311 additions and 23 deletions

View File

@@ -1,4 +1,3 @@
#include <utility>
#ifndef PORYGONLANG_PARSEDEXPRESSION_HPP
#define PORYGONLANG_PARSEDEXPRESSION_HPP
@@ -12,7 +11,7 @@
#include "../../Utilities/HashedString.hpp"
namespace Porygon::Parser {
enum class ParsedExpressionKind {
enum class ParsedExpressionKind : uint8_t {
Bad,
LiteralInteger,