walt-syntax
Advanced tools
Comparing version 0.6.0 to 0.7.0
@@ -132,2 +132,4 @@ (function (global, factory) { | ||
const Type = 'Type'; | ||
const ArrayType = 'ArrayType'; | ||
const DeclType = 'DeclType'; | ||
const GenericType = 'GenericType'; | ||
@@ -151,2 +153,3 @@ const UserType = 'UserType'; | ||
const Struct = 'Struct'; | ||
const UnionType = 'UnionType'; | ||
const ReturnStatement = 'ReturnStatement'; | ||
@@ -212,2 +215,3 @@ const Sequence = 'Sequence'; | ||
Struct, | ||
UnionType, | ||
ReturnStatement, | ||
@@ -249,2 +253,4 @@ Sequence, | ||
Type, | ||
ArrayType, | ||
DeclType, | ||
GenericType, | ||
@@ -268,2 +274,3 @@ UserType, | ||
Struct, | ||
UnionType, | ||
ReturnStatement, | ||
@@ -317,2 +324,4 @@ Sequence, | ||
exports.Type = Type; | ||
exports.ArrayType = ArrayType; | ||
exports.DeclType = DeclType; | ||
exports.GenericType = GenericType; | ||
@@ -336,2 +345,3 @@ exports.UserType = UserType; | ||
exports.Struct = Struct; | ||
exports.UnionType = UnionType; | ||
exports.ReturnStatement = ReturnStatement; | ||
@@ -338,0 +348,0 @@ exports.Sequence = Sequence; |
{ | ||
"name": "walt-syntax", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"description": "Walt Syntax", | ||
@@ -5,0 +5,0 @@ "main": "dist/walt-syntax.js", |
@@ -23,2 +23,4 @@ // Main Program | ||
export const Type = 'Type'; | ||
export const ArrayType = 'ArrayType'; | ||
export const DeclType = 'DeclType'; | ||
export const GenericType = 'GenericType'; | ||
@@ -42,2 +44,3 @@ export const UserType = 'UserType'; | ||
export const Struct = 'Struct'; | ||
export const UnionType = 'UnionType'; | ||
export const ReturnStatement = 'ReturnStatement'; | ||
@@ -103,2 +106,3 @@ export const Sequence = 'Sequence'; | ||
Struct, | ||
UnionType, | ||
ReturnStatement, | ||
@@ -140,2 +144,4 @@ Sequence, | ||
Type, | ||
ArrayType, | ||
DeclType, | ||
GenericType, | ||
@@ -159,2 +165,3 @@ UserType, | ||
Struct, | ||
UnionType, | ||
ReturnStatement, | ||
@@ -161,0 +168,0 @@ Sequence, |
34614
683