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)
Report function calls with more than 31 arguments. 462649989e32c97aecdf0aec40e0c86102ac26ac lep 2022-12-05 20:13:50
Add basic nix flake b534287001f27c310baf8194e9af0693e3cd1fec lep 2022-10-15 11:10:09
Actualy use unary plus in test... ae3ab09ffe8c1630721bd26e655850db50194c20 lep 2022-08-21 08:51:28
Add tests for unary plus. f031582b832cc48d67971da1f8ba9b0be5b023e4 lep 2022-08-21 08:49:48
Allow unary + 5b6b615cea77034b738da3eac62ae7ba8052588d lep 2022-08-21 08:38:36
Let's stick to C89 for no particular reason. cd51461db64267f9a9cd9cdc25fec7d1fbb7f18a lep 2022-08-01 06:57:19
Improve help message 703f452844de116dbb153ff581bfe4120ea92fe7 lep 2022-07-31 14:16:56
Fix compilation error on GCC 10 27d720b5667133e082ed05a8b11bad1363d3f941 lep 2021-09-11 17:52:21
Removed mysterious "tabs" token from lexer 6f64950ace54e78e7de5ad81d7a86f7519584367 lep 2021-08-15 18:41:28
Better error message when using a function as var name a9da0a4fac7285895ddee113c3df2f1de64cca89 lep 2021-06-12 16:55:21
Add special case for missing `call` ffc71221bf4cf297759d36f57d45bb9f20434b4f lep 2021-04-09 21:42:24
Fixes for OpenBSD 4edafbf95d75a98fc4b1469f32bb4e52ed200314 lep 2021-03-27 09:37:24
Don't use strncat. 332fecc88884fe33da77036a41188b9cfc73e4f2 lep 2021-02-19 22:25:35
Allow assignment to local variable in constant function 0920290c0af1fe76066aa9520729b2afaa41fbd7 lep 2020-08-04 16:18:16
Add hexadecimal form with uppercase X 43d20a0f74e86cb2c89021b893b923d2efb4070a lep 2020-08-04 16:17:13
Use flag in test. df89d16a43ce0b5c2f7ca0a079818361dee02908 lep 2020-08-04 16:15:24
Small readme fixes eeddac84a092c2cb3105510626cb674729c4f09f lep 2020-08-03 09:49:49
Warn when using native as code 1b14ec57777560df0982a08f3a2bc8eb27a1df75 lep 2020-08-03 09:32:38
Use the strhash hashfunc for our hashtables. d6f0de51cb54921b529799b9939cfe2dcdf7b4d0 lep 2020-07-29 11:13:13
Document installation methods 814075ef77bc8981684971bfc2a5c626f2e34035 lep 2020-07-18 08:11:43
Commit 462649989e32c97aecdf0aec40e0c86102ac26ac - Report function calls with more than 31 arguments.
Author: lep
Author date (UTC): 2022-12-05 20:13
Committer name: lep
Committer date (UTC): 2022-12-05 20:13
Parent(s): b534287001f27c310baf8194e9af0693e3cd1fec
Signer:
Signing key:
Signing status: N
Tree: 7f0588c1cc1854a62cc4f3b6a15bd6ca83ad2661
File Lines added Lines deleted
misc.c 15 0
tests/should-check/function-call-with-31-args.j 7 0
tests/should-check/function-definition-with-32-args.j 2 0
tests/should-fail/function-call-with-32-params.j 8 0
tests/should-fail/function-call-with-33-params.j 9 0
File misc.c changed (mode: 100644) (index cd63063..f4e48ee)
... ... void validateGlobalAssignment(const char *varname)
307 307 } }
308 308 } }
309 309
310 void check_too_many_params(int num_params, const struct paramlist *inp, const struct funcdecl *fd)
311 {
312 // We use exact comparison to only report it once
313 if(num_params == 32 && inp)
314 {
315 char buf[1024];
316 snprintf(buf, 1024, "A function call can have at most 31 arguments");
317 yyerrorex(runtimeerror, buf);
318 }
319 }
320
310 321 void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, bool mustretbool) void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, bool mustretbool)
311 322 { {
312 323 const struct paramlist *func = fd->p; const struct paramlist *func = fd->p;
313 324 const struct typeandname *fi = func->head; const struct typeandname *fi = func->head;
314 325 const struct typeandname *pi = inp->head; const struct typeandname *pi = inp->head;
326
327 int num_params = 1;
315 328 while(true) { while(true) {
329 check_too_many_params(num_params, pi, fd);
316 330 if (fi == NULL && pi == NULL) if (fi == NULL && pi == NULL)
317 331 return; return;
318 332 if (fi == NULL && pi != NULL) { if (fi == NULL && pi != NULL) {
 
... ... void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, boo
349 363 } }
350 364 pi = pi->next; pi = pi->next;
351 365 fi = fi->next; fi = fi->next;
366 num_params++;
352 367 } }
353 368 } }
354 369
File tests/should-check/function-call-with-31-args.j added (mode: 100644) (index 0000000..1d3c9b2)
1
2 function a takes integer a1, integer a2, integer a3, integer a4, integer a5, integer a6, integer a7, integer a8, integer a9, integer a10, integer a11, integer a12, integer a13, integer a14, integer a15, integer a16, integer a17, integer a18, integer a19, integer a20, integer a21, integer a22, integer a23, integer a24, integer a25, integer a26, integer a27, integer a28, integer a29, integer a30, integer a31 returns nothing
3 endfunction
4
5 function b takes nothing returns nothing
6 call a(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31)
7 endfunction
File tests/should-check/function-definition-with-32-args.j added (mode: 100644) (index 0000000..86209bb)
1 function a takes integer a1, integer a2, integer a3, integer a4, integer a5, integer a6, integer a7, integer a8, integer a9, integer a10, integer a11, integer a12, integer a13, integer a14, integer a15, integer a16, integer a17, integer a18, integer a19, integer a20, integer a21, integer a22, integer a23, integer a24, integer a25, integer a26, integer a27, integer a28, integer a29, integer a30, integer a31, integer a32 returns nothing
2 endfunction
File tests/should-fail/function-call-with-32-params.j added (mode: 100644) (index 0000000..6491d32)
1
2 function a takes integer a1, integer a2, integer a3, integer a4, integer a5, integer a6, integer a7, integer a8, integer a9, integer a10, integer a11, integer a12, integer a13, integer a14, integer a15, integer a16, integer a17, integer a18, integer a19, integer a20, integer a21, integer a22, integer a23, integer a24, integer a25, integer a26, integer a27, integer a28, integer a29, integer a30, integer a31, integer a32 returns nothing
3 endfunction
4
5 function b takes nothing returns nothing
6 call a(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32)
7 endfunction
8
File tests/should-fail/function-call-with-33-params.j added (mode: 100644) (index 0000000..17e20bf)
1
2 function a takes integer a1, integer a2, integer a3, integer a4, integer a5, integer a6, integer a7, integer a8, integer a9, integer a10, integer a11, integer a12, integer a13, integer a14, integer a15, integer a16, integer a17, integer a18, integer a19, integer a20, integer a21, integer a22, integer a23, integer a24, integer a25, integer a26, integer a27, integer a28, integer a29, integer a30, integer a31, integer a32, integer a33 returns nothing
3 endfunction
4
5 function b takes nothing returns nothing
6 call a(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33)
7 endfunction
8
9
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