From ee69169f841542c6d5d8a8c7d4b011e294d73bd8 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 13 Aug 2015 23:07:23 +0100 Subject: Basic type checking for operation arguments Arguments passed to basic operations are checked for type if they are strings, bolleans or numbers. Operations that are overloaded, special or have elipsis are not checked. --- src/webidl-ast.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/webidl-ast.h') diff --git a/src/webidl-ast.h b/src/webidl-ast.h index 5126de8..109159f 100644 --- a/src/webidl-ast.h +++ b/src/webidl-ast.h @@ -47,6 +47,7 @@ enum webidl_node_type { }; enum webidl_type { + WEBIDL_TYPE_ANY, /**< The type is unconstrained */ WEBIDL_TYPE_USER, WEBIDL_TYPE_BOOL, WEBIDL_TYPE_BYTE, -- cgit v1.2.3