vrtc / pjass (public) (License: BSD) (since 2023-08-03) (hash sha1)
pjass is a free Jass scripting language parser. This repository is a fork of lep/pjass. The goal is to add Debian packaging. As of the time of this writing, it works for current stable, that is Debian 12 (bookworm).

/grammar.y (c7c6b7f8307c1c88886fa8091c7921ea247c8d75) (22296 bytes) (mode 100644) (type blob)

// Jass2 parser for bison/yacc
// by Rudi Cilibrasi
// Sun Jun  8 00:51:53 CEST 2003
// thanks to Jeff Pang for the handy documentation that this was based
// on at http://jass.sourceforge.net
%{

#include <stdio.h>
#include <string.h>
#include "token.yy.h"
#include "misc.h"
#include "blocks.h"

#define YYMAXDEPTH 100000
#define YYDEBUG 1

%}

%define api.value.type {union node}

%token IF
%token THEN
%token TYPE
%token EXTENDS
%token HANDLE
%token NEWLINE
%token GLOBALS
%token ENDGLOBALS
%token CONSTANT
%token NATIVE
%token TAKES
%token RETURNS
%token FUNCTION
%token ENDFUNCTION
%token LOCAL
%token ARRAY
%token SET
%token CALL
%token ELSE
%token ELSEIF
%token ENDIF
%token LOOP
%token EXITWHEN
%token RETURN
%token DEBUG
%token ENDLOOP
%token NOT
%token TNULL
%token TTRUE
%token TFALSE
%token CODE
%token STRING
%token INTEGER
%token REAL
%token BOOLEAN
%token NOTHING
%token ID
%token COMMA
%token AND
%token OR
%token EQUALS
%token TIMES
%token DIV
%token MOD
%token PLUS
%token MINUS
%token LPAREN
%token RPAREN
%token LBRACKET
%token RBRACKET
%token LESS
%token GREATER
%token LEQ
%token GEQ
%token EQCOMP
%token NEQ
%token STRINGLIT
%token INTLIT
%token REALLIT
%token UNITTYPEINT
%token ANNOTATION
%token ALIAS

%right EQUALS
%left AND
%left OR
%left LESS GREATER EQCOMP NEQ LEQ GEQ
%left NOT
%left MINUS PLUS
%left TIMES DIV MOD

%%



program: topscopes globdefs topscopes funcdefns
;

topscopes: topscope
       | topscopes topscope
;

topscope: typedefs  
       | funcdecls
;

funcdefns: /* empty */
       | funcdefns funcdefn
;

globdefs: /* empty */
         | globals newline vardecls endglobals endglobalsmarker
         | globals vardecls endglobals endglobalsmarker {yyerrorline(syntaxerror, lineno - 1, "Missing linebreak before global declaration");}
;

endglobalsmarker: /* empty */  {afterendglobals = 1;}
;

globals: GLOBALS { inglobals = 1; };
endglobals: ENDGLOBALS { inglobals = 0; };

vardecls: /* empty */
         | vd vardecls
;

vd:      newline
       | vardecl
;

funcdecls: /* empty */
         | fd funcdecls
;

fd:      newline
       | funcdecl
;

typedefs:  /* empty */
         | td typedefs
;

td:      newline
       | typedef
;

// Returns a typenode
expr: intexpr      { $$.ty = gInteger; }
      | realexpr   { $$.ty = gReal; }
      | stringexpr { $$.ty = $1.ty; }
      | boolexpr   { $$.ty = gBoolean; }
      | FUNCTION rid LPAREN exprlistcompl RPAREN {
            struct funcdecl *fd = ht_lookup(&functions, $2.str);
            if (fd == NULL) {
                char ebuf[1024];
                snprintf(ebuf, 1024, "Undefined function %s", $2.str);
                getsuggestions($2.str, ebuf, 1024, 1, &functions);
                yyerrorex(semanticerror, ebuf);
                $$.ty = gCode;
            } else {
                char ebuf[1024];
                if (fd->p->head != NULL) {
                    snprintf(ebuf, 1024, "Function %s must not take any arguments when used as code", $2.str);
                }else{
                    snprintf(ebuf, 1024, "Function must not take any arguments when used as code");
                }
                yyerrorex(semanticerror, ebuf);
                if( fd->ret == gBoolean) {
                    $$.ty = gCodeReturnsBoolean;
                } else {
                    $$.ty = gCodeReturnsNoBoolean;
                }
            }

      }
      | FUNCTION rid {
            struct funcdecl *fd = ht_lookup(&functions, $2.str);
            if (fd == NULL) {
                char ebuf[1024];
                snprintf(ebuf, 1024, "Undefined function %s", $2.str);
                getsuggestions($2.str, ebuf, 1024, 1, &functions);
                yyerrorex(semanticerror, ebuf);
                $$.ty = gCode;
            } else {
                if (fd->p->head != NULL) {
                    char ebuf[1024];
                    snprintf(ebuf, 1024, "Function %s must not take any arguments when used as code", $2.str);
                    yyerrorex(semanticerror, ebuf);
                }
                if( fd->isnative ) {
                    char ebuf[1024];
                    snprintf(ebuf, 1024, "Cannot use native '%s' as code", $2.str);
                    yyerrorline(runtimeerror, islinebreak ? lineno - 1 : lineno, ebuf);
                }
                if( fd->ret == gBoolean) {
                    $$.ty = gCodeReturnsBoolean;
                } else {
                    $$.ty = gCodeReturnsNoBoolean;
                }
            }
         }
      | TNULL { $$.ty = gNull; }
      | expr LEQ expr { checkcomparison($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr GEQ expr { checkcomparison($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr LESS expr { checkcomparison($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr GREATER expr { checkcomparison($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr EQCOMP expr { checkeqtest($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr NEQ expr { checkeqtest($1.ty, $3.ty); $$.ty = gBoolean; }
      | expr AND expr { canconvert($1.ty, gBoolean, 0); canconvert($3.ty, gBoolean, 0); $$.ty = gBoolean; }
      | expr OR expr { canconvert($1.ty, gBoolean, 0); canconvert($3.ty, gBoolean, 0); $$.ty = gBoolean; }
      | NOT expr { canconvert($2.ty, gBoolean, 0); $$.ty = gBoolean; }
      | expr TIMES expr { $$.ty = binop($1.ty, $3.ty); }
      | expr DIV expr { $$.ty = binop($1.ty, $3.ty); }
      | expr MOD expr {
	    checkmodulo($1.ty, $3.ty);
	    $$.ty = gInteger;
	  }
      | expr MINUS expr { $$.ty = binop($1.ty, $3.ty); }
      | expr PLUS expr { 
            if ($1.ty == gString && $3.ty == gString)
                $$.ty = gString;
            else
                $$.ty = binop($1.ty, $3.ty);
        }
      | MINUS expr { isnumeric($2.ty); $$.ty = $2.ty; }
      | PLUS expr { isnumeric($2.ty); $$.ty = $2.ty; }
      | LPAREN expr RPAREN { $$.ty = $2.ty; }
      | funccall { $$.ty = $1.ty; }
      | rid LBRACKET expr RBRACKET {
          const struct typeandname *tan = getVariable($1.str);
          if (!typeeq(tan->ty, gAny)) {
	    checkarrayindex(tan->name, $3.ty, lineno);
            if (!tan->isarray) {
              char ebuf[1024];
              snprintf(ebuf, 1024, "%s not an array", $1.str);
              yyerrorex(semanticerror, ebuf);
            }
          }
          $$.ty = tan->ty;
       }
      | rid {
          const struct typeandname *tan = getVariable($1.str);
          if (tan->isarray) {
            char ebuf[1024];
            snprintf(ebuf, 1024, "Index missing for array variable %s", $1.str);
            yyerrorex(semanticerror, ebuf);
          }
          checkwrongshadowing(tan, 0);
          if( !tan->isarray && !ht_lookup(&initialized, $1.str) ){
            char buf[1024];
            
            if( ht_lookup(&locals, $1.str)){
                snprintf(buf, 1024, "Variable %s is uninitialized", $1.str);
                yyerrorline(semanticerror, lineno, buf);
            }else if(ht_lookup(&uninitialized_globals, $1.str)){
                if(infunction ){
                    if( flagenabled(flag_checkglobalsinit) ){
                        snprintf(buf, 1024, "Variable %s might be uninitalized", $1.str);
                        yyerrorline(semanticerror, lineno, buf);
                    }
                }else{
                    snprintf(buf, 1024, "Variable %s is uninitalized", $1.str);
                    yyerrorline(semanticerror, lineno, buf);
                }
            }

          
       }
       $$.ty = tan->ty;
      }
      | expr EQUALS expr {yyerrorex(syntaxerror, "Single = in expression, should probably be =="); checkeqtest($1.ty, $3.ty); $$.ty = gBoolean;}
      | LPAREN expr {yyerrorex(syntaxerror, "Mssing ')'"); $$.ty = $2.ty;}
      
      // incomplete expressions 
      | expr LEQ { checkcomparisonsimple($1.ty); yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr GEQ { checkcomparisonsimple($1.ty); yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr LESS { checkcomparisonsimple($1.ty); yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr GREATER { checkcomparisonsimple($1.ty); yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr EQCOMP { yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr NEQ { yyerrorex(syntaxerror, "Missing expression for comparison"); $$.ty = gBoolean; }
      | expr AND { canconvert($1.ty, gBoolean, 0); yyerrorex(syntaxerror, "Missing expression for logical and"); $$.ty = gBoolean; }
      | expr OR { canconvert($1.ty, gBoolean, 0); yyerrorex(syntaxerror, "Missing expression for logical or"); $$.ty = gBoolean; }
      | NOT { yyerrorex(syntaxerror, "Missing expression for logical negation"); $$.ty = gBoolean; }
;

funccall: rid LPAREN exprlistcompl RPAREN {
        $$ = checkfunccall($1.str, $3.pl);    
    }
    |  rid LPAREN exprlistcompl newline {
        yyerrorex(syntaxerror, "Missing ')'");
        $$ = checkfunccall($1.str, $3.pl);
    }
;

exprlistcompl: /* empty */ { $$.pl = newparamlist(); }
       | exprlist { $$.pl = $1.pl; }
;

exprlist: expr         { $$.pl = newparamlist(); addParam($$.pl, newtypeandname($1.ty, "")); }
       |  expr COMMA exprlist { $$.pl = $3.pl; addParam($$.pl, newtypeandname($1.ty, "")); }
;


stringexpr: STRINGLIT {
    if(flagenabled(flag_checkstringhash)){
        $$.ty = ht_lookup(&string_literals, stringlit_buff);
        if( $$.ty == NULL ) {
            $$.ty = newtypenode(stringlit_buff, gString);
            ht_put(&string_literals, $$.ty->typename, $$.ty);
        }
    }else{
        $$.ty = gString;
    }
};

realexpr: REALLIT { $$.ty = gReal; }
;

boolexpr: boollit { $$.ty = gBoolean; }
;

boollit: TTRUE
       | TFALSE
;

intexpr:   INTLIT { $$.ty = gInteger; }
         | UNITTYPEINT { $$.ty = gInteger; }
;


funcdecl: nativefuncdecl { $$.fd = $1.fd; }
         | CONSTANT nativefuncdecl { $$.fd = $2.fd; }
         | funcdefncore { $$.fd = $1.fd; }
;

nativefuncdecl: NATIVE rid TAKES optparam_list RETURNS opttype
{
    if (ht_lookup(&locals, $2.str) || ht_lookup(&params, $2.str) || ht_lookup(&globals, $2.str)) {
        char buf[1024];
        snprintf(buf, 1024, "%s already defined as variable", $2.str);
        yyerrorex(semanticerror, buf);
    } else if (ht_lookup(&types, $2.str)) {
        char buf[1024];
        snprintf(buf, 1024, "%s already defined as type", $2.str);
        yyerrorex(semanticerror, buf);
    }
    if(encoutered_first_function){
        yyerrorex(semanticerror, "Native declared after functions");
    }
    $$.fd = newfuncdecl(); 
    $$.fd->name = strdup($2.str);
    $$.fd->p = $4.pl;
    $$.fd->ret = $6.ty;
    $$.fd->isconst = isconstant;
    $$.fd->isnative = true;

    put(&functions, $$.fd->name, $$.fd);

    if( !strcmp("Filter", $$.fd->name) ){
        fFilter = $$.fd;
    }else if( !strcmp("Condition", $$.fd->name) ){
        fCondition = $$.fd;
    }else if( !strcmp("StringHash", $$.fd->name) ){
        fStringHash = $$.fd;
    }
}
;

funcdefn: newline
       | funcdefncore
       | statement { yyerrorex(syntaxerror, "Statement outside of function"); }
;

funcdefncore: funcbegin localblock codeblock funcend {
            if(retval != gNothing) {
                if(!getTypeTag($3.ty))
                    yyerrorline(semanticerror, lineno - 1, "Missing return");
                else if ( flagenabled(flag_rb) )
                    canconvertreturn($3.ty, retval, -1);
            }
            fnannotations = pjass_flags;
        }
       | funcbegin localblock codeblock {
       
            char msg[1024];
            block_missing_error(msg, 1024);
            yyerrorex(syntaxerror, msg);
            
            ht_clear(&params);
            ht_clear(&locals);
            ht_clear(&initialized);
            curtab = &globals;
            fnannotations = pjass_flags;
        }
;

funcend: ENDFUNCTION {
        ht_clear(&params);
        ht_clear(&locals);
        ht_clear(&initialized);
        curtab = &globals;
        inblock = 0;
        inconstant = 0;
        infunction = 0;
        
        char msg[1024];
        
        if(! block_pop(Function, msg, 1024)){
            yyerrorex(syntaxerror, msg);
        }
    }
;

returnorreturns: RETURNS
               | RETURN {yyerrorex(syntaxerror,"Expected \"returns\" instead of \"return\"");}
;

funcbegin: FUNCTION rid TAKES optparam_list returnorreturns opttype {
        inconstant = 0;
        infunction = 1;
        encoutered_first_function = 1;
        $$ = checkfunctionheader($2.str, $4.pl, $6.ty);
        $$.fd->isconst = 0;
        block_push(lineno, Function);
    }
    | CONSTANT FUNCTION rid TAKES optparam_list returnorreturns opttype {
        inconstant = 1;
        infunction = 1;
        encoutered_first_function = 1;
        $$ = checkfunctionheader($3.str, $5.pl, $7.ty);
        $$.fd->isconst = 1;
        block_push(lineno, Function);
    }
;

codeblock: /* empty */ { $$.ty = gEmpty; }
       | statement codeblock {
            if(typeeq($2.ty, gEmpty))
                $$.ty = $1.ty;
            else
                $$.ty = mkretty($2.ty, getTypeTag($1.ty) || getTypeTag($2.ty) );
        }
;

statement:
      newline { $$.ty = gEmpty; }
    | CALL funccall newline { $$.ty = gAny; }
    /*1    2    3     4        5        6        7      8      9 */
    | ifstart expr THEN newline codeblock elsifseq elseseq ifend newline {
        canconvert($2.ty, gBoolean, -1);
        $$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty));
    }
    | SET rid EQUALS expr newline {
        const struct typeandname *tan = getVariable($2.str);
        checkwrongshadowing(tan, -1);
        if (tan->isarray) {
            char ebuf[1024];
            snprintf(ebuf, 1024, "Index missing for array variable %s", $2.str);
            yyerrorline(semanticerror, lineno - 1,  ebuf);
        }
        canconvert($4.ty, tan->ty, -1);
        $$.ty = gAny;
        if (tan->isconst) {
            char ebuf[1024];
            snprintf(ebuf, 1024, "Cannot assign to constant %s", $2.str);
            yyerrorline(semanticerror, lineno - 1, ebuf);
        }
        if (inconstant)
            validateGlobalAssignment($2.str);
        if(infunction && !ht_lookup(&initialized, $2.str)){
            ht_put(&initialized, $2.str, (void*)1);
        }
        $$.ty = gAny;
    }
    | SET rid rid EQUALS expr newline {
        char ebuf[1024];
        if(ht_lookup(&types, $2.str)){
            snprintf(ebuf, 1024, ">%s< %s is an error here. The type only needs to be stated at declartion time", $2.str, $3.str);
        }else if(ht_lookup(&types, $3.str)){
            snprintf(ebuf, 1024, "%s >%s< is an error here. The type only needs to be stated at declartion time", $2.str, $3.str);
        }else{
            snprintf(ebuf, 1024, "Unexpected '%s'", $3.str);
        }
        yyerrorline(syntaxerror, lineno -1, ebuf);
        $$.ty = gAny;
    }
    | SET rid LBRACKET expr RBRACKET EQUALS expr newline{
        const struct typeandname *tan = getVariable($2.str);
        $$.ty = gAny;
        if (tan->ty != gAny) {
            checkarrayindex(tan->name, $4.ty, lineno -1);
            if (!tan->isarray) {
                char ebuf[1024];
                snprintf(ebuf, 1024, "%s is not an array", $2.str);
                yyerrorline(semanticerror, lineno - 1, ebuf);
            }
            canconvert($7.ty, tan->ty, -1);
            if (inconstant)
                validateGlobalAssignment($2.str);
        }
        $$.ty = gAny;
    }
    | loopstart newline codeblock loopend newline { $$.ty = $3.ty; }
    | loopstart newline codeblock {
        char msg[1024];
        block_missing_error(msg, 1024);
        yyerrorex(syntaxerror, msg);
        $$.ty = $3.ty;
     }
    | EXITWHEN expr newline {
        canconvert($2.ty, gBoolean, -1);
        if (!inloop)
            yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop");
        $$.ty = gAny;
    }
    | RETURN expr newline {
        if(retval == gNothing)
            yyerrorline(semanticerror, lineno - 1, "Cannot return value from function that returns nothing");
        else if (! flagenabled(flag_rb) )
            canconvertreturn($2.ty, retval, 0);
        $$.ty = mkretty($2.ty, 1);
     }
    | RETURN newline {
        if (retval != gNothing)
            yyerrorline(semanticerror, lineno - 1, "Return nothing in function that should return value");
        $$.ty = mkretty(gAny, 1);
    }
    | DEBUG statement { $$.ty = gAny; }
   /*1    2   3      4        5         6        7 */
    | ifstart expr THEN newline codeblock elsifseq elseseq {
        canconvert($2.ty, gBoolean, -1);
        $$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty));
        
        char msg[1024];
        block_missing_error(msg, 1024);
        yyerrorex(syntaxerror, msg);
    }
    | ifstart expr newline {
        canconvert($2.ty, gBoolean, -1);
        $$.ty = gAny;
        yyerrorex(syntaxerror, "Missing then or non valid expression");
    }
    | SET funccall newline {
        $$.ty = gAny;
        yyerrorline(semanticerror, lineno - 1, "Call expected instead of set");
    }
    | lvardecl {
        $$.ty = gAny;
        yyerrorex(semanticerror, "Local declaration after first statement");
    }
    | funccall newline {
        yyerrorline(syntaxerror, lineno-1, "Missing 'call'");
        $$.ty = gAny;
    }
    | error { $$.ty = gAny; }
;

loopstart: LOOP {
    inloop++;
    block_push(lineno, Loop);
};

loopend: ENDLOOP {
    inloop--;
    
    char msg[1024];
    if(! block_pop(Loop, msg, 1024)){
        yyerrorex(syntaxerror, msg);
    }
};

ifstart: IF {
    block_push(lineno, If);
};

ifend: ENDIF {
    char msg[1024];
    if(! block_pop(If, msg, 1024)){
        yyerrorex(syntaxerror, msg);
    }
};

elseseq: /* empty */ { $$.ty = gAny; }
        | ELSE newline codeblock {
            $$.ty = $3.ty;
        }
;

elsifseq: /* empty */ { $$.ty = mkretty(gEmpty, 1); }
        /*   1     2    3    4         5         6 */
        | ELSEIF expr THEN newline codeblock elsifseq {
            canconvert($2.ty, gBoolean, -1);
            
            if(typeeq($6.ty, gEmpty)){
                if(typeeq($5.ty, gEmpty)){
                    $$.ty = mkretty(gAny, 0);
                }else{
                    $$.ty = $5.ty;
                }
            }else{
                $$.ty = combinetype($5.ty, $6.ty);
            }
        }
;

optparam_list: param_list { $$.pl = $1.pl; }
               | NOTHING { $$.pl = newparamlist(); }
;

opttype: NOTHING { $$.ty = gNothing; }
         | type { $$.ty = $1.ty; }
;

param_list: typeandname { $$.pl = newparamlist(); addParam($$.pl, $1.tan); }
          | typeandname COMMA param_list { addParam($3.pl, $1.tan); $$.pl = $3.pl; }
;

rid: ID {
        $$.str = strdup(yytext);
    }
    | ALIAS {
        $$.str = strdup("alias");
        yyerrorex(syntaxerror, "Invalid name \"alias\"");
    }
    | TYPE {
        $$.str = strdup("type");
        yyerrorex(syntaxerror, "Invalid name \"type\"");
    }
;

vartypedecl: type rid {
        struct typeandname *tan = newtypeandname($1.ty, $2.str);
        tan->lineno = lineno;
        $$ = checkvartypedecl(tan);
    }
    | CONSTANT type rid {
        if (infunction) {
            yyerrorex(semanticerror, "Local constants are not allowed");
        }
        struct typeandname *tan = newtypeandname($2.ty, $3.str);
        tan->isconst = 1;
        $$ = checkvartypedecl(tan);
    }
    | type ARRAY rid {
        struct typeandname *tan = newtypeandname($1.ty, $3.str);
        tan->isarray = 1;
        $$ = checkarraydecl(tan);
  
    }
;

localblock: endlocalsmarker
        | lvardecl localblock
        | newline localblock
;

endlocalsmarker: /* empty */ { fCurrent = NULL; }
;

lvardecl: LOCAL vardecl { }
        | vardecl { yyerrorex(syntaxerror, "Missing 'local'"); }
        | CONSTANT LOCAL vardecl { yyerrorex(syntaxerror, "Local variables can not be declared constant"); }
        | typedef { yyerrorex(syntaxerror,"Types can not be extended inside functions"); }
        | funccall newline {
            yyerrorline(syntaxerror, lineno-1, "Missing 'call'");
            $$.ty = gAny;
        }
;

vardecl: vartypedecl newline {
             const struct typeandname *tan = getVariable($1.str);
             if (tan->isconst) {
                 yyerrorline(syntaxerror, lineno - 1, "Constants must be initialized");
             }
             if(inglobals){ 
                ht_put(&uninitialized_globals, $1.str, (void*)1);
             }
             $$.ty = gNothing;
           }
        |  vartypedecl EQUALS expr newline {
             const struct typeandname *tan = getVariable($1.str);
             if (tan->isarray) {
               yyerrorex(syntaxerror, "Arrays cannot be directly initialized");
             }
             if(infunction && !ht_lookup(&initialized, tan->name)){
               put(&initialized, tan->name, (void*)1);
             }
             canconvert($3.ty, tan->ty, -1);
             $$.ty = gNothing;
           }
        | error
;

typedef: TYPE rid EXTENDS type {
  if (ht_lookup(&types, $2.str)) {
     char buf[1024];
     snprintf(buf, 1024, "Multiply defined type %s", $2.str);
     yyerrorex(semanticerror, buf);
  } else if (ht_lookup(&functions, $2.str)) {
    char buf[1024];
    snprintf(buf, 1024, "%s already defined as function", $2.str);
    yyerrorex(semanticerror, buf);
  }
  else
    put(&types, $2.str, newtypenode($2.str, $4.ty));
}
;

typeandname: type rid { $$.tan = newtypeandname($1.ty, $2.str); }
;
  
type: primtype { $$.ty = $1.ty; }
  | rid {
    $$.ty = ht_lookup(&types, $1.str);
    if ($$.ty == NULL) {
	char buf[1024];
	snprintf(buf, 1024, "Undefined type %s", $1.str);
	getsuggestions($1.str, buf, 1024, 1, &types);
	yyerrorex(semanticerror, buf);
	$$.ty = gAny;
    }
}
;

primtype: HANDLE  { $$.ty = ht_lookup(&types, yytext); }
 | INTEGER        { $$.ty = ht_lookup(&types, yytext); }
 | REAL           { $$.ty = ht_lookup(&types, yytext); }
 | BOOLEAN        { $$.ty = ht_lookup(&types, yytext); }
 | STRING         { $$.ty = ht_lookup(&types, yytext); }
 | CODE           { $$.ty = ht_lookup(&types, yytext); }
;

newline: NEWLINE;


Mode Type Size Ref File
100644 blob 170 28f83f8deb57bbc09c713a866975355fd9225827 .gitignore
100644 blob 48 3bfb16e6c32903fb8e4db429b412ee6e8ef23a14 AUTHORS
100644 blob 3646 47954500887f51663836b8d7380d90d46122972b GNUmakefile
100644 blob 1313 4dc80d23e5c4804173171f9e03724a7d9fff66a1 LICENSE
100644 blob 1431 176e50b9b24ded89c009136a2386586cacd5fcd2 blocks.c
100644 blob 284 fe2c87b1e497bec19349f6250c1be9552b956e09 blocks.h
100755 blob 428 cc6218cbb759cfd1deef9a20b246b8ed7697bd02 check.sh
040000 tree - 6b08e4bb72f2b47cb3b9f1a33fb85cf41bed6dec debian
100755 blob 273 b0e5e8c7418adb04f6a7d76e9c011b4ba4ef3092 fail.sh
100644 blob 992 0fc28579bc6f9d99c60960855c5088307fa15d13 flake.lock
100644 blob 1761 92d7df0df6f74646b74191e289383000d92aac2f flake.nix
100644 blob 266 88a7c9f4c9cfca968c1b863d4fd49131b5c2e175 funcdecl.c
100644 blob 276 f409be6b975f0a454de860058f1bf91849f1de96 funcdecl.h
100644 blob 22296 c7c6b7f8307c1c88886fa8091c7921ea247c8d75 grammar.y
100644 blob 1684 3f87f5c4542560d5ded7bd36438657a5869771ca hashtable.c
100644 blob 501 2185dc1cb949f6fa3a1b0985b4caaf7769456156 hashtable.h
100644 blob 7565 9a841d9cd5246171bd392cc8ab640e1d84714822 main.c
100644 blob 25613 4f4993e7219785d40eb38fd83a277b9b40118656 misc.c
100644 blob 4850 900a90d50effac8df3de9cc8359df1055da43c41 misc.h
100644 blob 330 92a4597d6df5097c58649391541d54f06b3bda1b paramlist.c
100644 blob 256 bb253362ef26a0ea881856aebeb8503fb82646fb paramlist.h
100644 blob 3680 0d3a55aa2bd7911e71390008b7723399c094eba1 readme.md
100644 blob 2441 ea188616a23838fd64aceadf9bd596b0b19bb20c sstrhash.c
100644 blob 135 c5326df74bb15edc131620941e0d4dc25ef2abb4 sstrhash.h
040000 tree - 26fd8bbce27f75aa2c7ec0bb1122cd995b54285c tests
100644 blob 6789 6a72ce2103c678f973d5fcc1b36a112c8f305264 token.l
100644 blob 1287 753fde490a39a9c775f5565af6ea5e6a8b64d419 tree.c
100644 blob 356 d943f2d407216cea33c9931439d6802af7d08ce6 tree.h
100644 blob 2502 fee7aee3384745b8f13f8b98870814cc109981b6 typeandname.c
100644 blob 914 c7c2ecbf5459c7cb80bd2661e6ca78c32a780e10 typeandname.h
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/pjass

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/pjass

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/pjass

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main