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).
List of commits:
Subject Hash Author Date (UTC)
Fixed some warnings. 334a10dc8faad2fa19eed06834273bff438f3955 lep 2018-11-07 22:45:22
Optimized ht_put by not calling ht_lookup. 4a2c4d293b719c939b4d8f357adcc04ef26b1cbb lep 2018-11-07 20:51:00
Only add globals to uninitialized globals. efb384fb661e08a855a5861189bf9409ebf9f557 lep 2018-11-07 14:56:38
Added unitialized check for globals. d8a909d8ac08cc233f5cd988afac043cbaeb1b4e lep 2018-11-06 19:43:57
Fixed off-by-one error in str_append. b458eb97a71bad87bbbbef610009da40e0dbf855 lep 2018-11-01 12:26:48
Added modulo operator. 70b4c5117a0b84cddd0c35e07a47e3b2aaf847b8 lep 2018-08-09 19:46:14
realloc returns the new pointer... c15eac9a4c2c2531a256125bc70272edbbf1d036 lep 2018-07-24 20:03:41
Track blocks d2763ae8473a1c699aa2e5605922e4b500c83ed4 lep 2018-07-22 13:28:40
Cross compile and strip under FreeBSD 296bd56c1347afb7a20337e02574f9196b48317a lep 2018-07-22 11:55:29
Track opening/closing blocks. 49b23df64b209106cce92e417ee13ecebb0bc009 lep 2018-07-09 09:37:01
Replace strncat with str_append. ad968e040f315ed3cf6580e46587342897839529 lep 2018-03-21 13:53:11
Do not report arrays as uninitialized when the index is missing. 72e93bd234743a438fb0a5c105514bf732c22b89 lep 2017-12-20 14:59:10
Better error messages. ad8342582ac3617280f471d889b1766be272858b lep 2017-11-15 17:52:08
Handle wrong shadowing. 0500a60ef11f39c4f33044e26c29798f6d8445b5 lep 2017-02-19 14:37:21
Added checks for natives which behave bad in a globals block. 3e6ac270dda9ad695723d3bc2aac4d69a2fdf87a lep 2017-02-19 10:57:33
Update readme.md 2c9177dd5482ed8c4c1464a4ade37c301205fe6b lep 2017-02-01 17:42:49
Public git release. 2da78f3665ac4f53f5833c6a48ebbeaabea0cd49 lep 2017-02-01 16:42:21
Better ifdef-handling for aligned malloc. d95ebafa7204e49d84a9fed8cdeb01713dd0bc82 lep 2017-02-01 16:41:07
Makefile changes. 0458bb26764aad1caec71ccf721e84a28c699ee0 lep 2017-02-01 15:48:25
Can now compile on freebsd and linux from one branch. 0772c4bd17dcfc389ca0e887b4bbceda8e46fa8e lep 2017-01-07 21:05:10
Commit 334a10dc8faad2fa19eed06834273bff438f3955 - Fixed some warnings.
Author: lep
Author date (UTC): 2018-11-07 22:45
Committer name: lep
Committer date (UTC): 2018-11-07 22:45
Parent(s): 4a2c4d293b719c939b4d8f357adcc04ef26b1cbb
Signer:
Signing key:
Signing status: N
Tree: 5e861ae28de560d798aa438f50d0ffc4b0c1911b
File Lines added Lines deleted
blocks.c 3 3
blocks.h 1 1
grammar.y 9 4
main.c 1 1
misc.h 1 0
File blocks.c changed (mode: 100644) (index dddab78..176e50b)
1 1 #include <stdint.h> #include <stdint.h>
2 2 #include <stdio.h> #include <stdio.h>
3 #include <stdlib.h>
3 4
4 5 #include "blocks.h" #include "blocks.h"
5 6 #include "misc.h" #include "misc.h"
6 7
7 8
8 static struct block_start {
9 struct block_start {
9 10 int lineno; int lineno;
10 11 enum block_type type; enum block_type type;
11
12 12 }; };
13 13
14 14 static struct block_start *blocks = NULL; static struct block_start *blocks = NULL;
 
... ... bool block_pop(enum block_type type, char *buf, size_t len){
52 52 } }
53 53
54 54
55 void block_missing_error(int x, char *msg, size_t len){
55 void block_missing_error(char *msg, size_t len){
56 56 if(size == 0){ if(size == 0){
57 57 return; return;
58 58 } }
File blocks.h changed (mode: 100644) (index 3cfddca..7e06325)
... ... enum block_type {
11 11 }; };
12 12 void block_push(int lineno, enum block_type type); void block_push(int lineno, enum block_type type);
13 13 bool block_pop(enum block_type type, char *buf, size_t len); bool block_pop(enum block_type type, char *buf, size_t len);
14 void block_missing_error(int x, char *msg, size_t len);
14 void block_missing_error(char *msg, size_t len);
15 15
16 16 #endif #endif
File grammar.y changed (mode: 100644) (index 2c24e4f..eb6213e)
... ... funcdefncore: funcbegin localblock codeblock funcend {
361 361 | funcbegin localblock codeblock { | funcbegin localblock codeblock {
362 362
363 363 char msg[1024]; char msg[1024];
364 block_missing_error(2, msg, 1024);
364 block_missing_error(msg, 1024);
365 365 yyerrorex(syntaxerror, msg); yyerrorex(syntaxerror, msg);
366 366
367 367 ht_clear(&params); ht_clear(&params);
 
... ... statement: newline { $$.ty = gEmpty; }
478 478 $$.ty = $3.ty; $$.ty = $3.ty;
479 479
480 480 char msg[1024]; char msg[1024];
481 block_missing_error(0, msg, 1024);
481 block_missing_error(msg, 1024);
482 482 yyerrorex(syntaxerror, msg); yyerrorex(syntaxerror, msg);
483 483
484 484 } }
485 | EXITWHEN expr newline { canconvert($2.ty, gBoolean, -1); if (!inloop) yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop"); $$.ty = gAny;}
485 | EXITWHEN expr newline {
486 canconvert($2.ty, gBoolean, -1);
487 if (!inloop)
488 yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop");
489 $$.ty = gAny;
490 }
486 491 | RETURN expr newline { | RETURN expr newline {
487 492 $$.ty = mkretty($2.ty, 1); $$.ty = mkretty($2.ty, 1);
488 493 if(retval == gNothing) if(retval == gNothing)
 
... ... statement: newline { $$.ty = gEmpty; }
502 507 $$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); $$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty));
503 508
504 509 char msg[1024]; char msg[1024];
505 block_missing_error(1, msg, 1024);
510 block_missing_error(msg, 1024);
506 511 yyerrorex(syntaxerror, msg); yyerrorex(syntaxerror, msg);
507 512 } }
508 513 | ifstart expr newline { | ifstart expr newline {
File main.c changed (mode: 100644) (index 9eeed2a..7380510)
... ... static void init()
19 19 { {
20 20 ht_init(&functions, 10009); ht_init(&functions, 10009);
21 21 ht_init(&globals, 8191); ht_init(&globals, 8191);
22 ht_init(&locals, 27);
22 ht_init(&locals, 57);
23 23 ht_init(&params, 23); ht_init(&params, 23);
24 24 ht_init(&types, 149); ht_init(&types, 149);
25 25 ht_init(&initialized, 2047); ht_init(&initialized, 2047);
File misc.h changed (mode: 100644) (index 05cecb0..4676171)
... ... union node checkfunccall(const char *fnname, struct paramlist *pl);
115 115 union node checkarraydecl(struct typeandname *tan); union node checkarraydecl(struct typeandname *tan);
116 116 union node checkvartypedecl(struct typeandname *tan); union node checkvartypedecl(struct typeandname *tan);
117 117 void checkwrongshadowing(const struct typeandname *tan, int linemod); void checkwrongshadowing(const struct typeandname *tan, int linemod);
118 void checkmodulo(const struct typenode *a, const struct typenode *b);
118 119
119 120 void str_append(char *buf, const char *str, size_t buf_size); void str_append(char *buf, const char *str, size_t buf_size);
120 121
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