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)
Changed //! +rb to //# +rb 63af0d3664320cc94ee6e284c308b1983bcfdab2 lep 2015-10-27 17:17:04
Fixed rare segmentation fault. 13a129c8800d306c4117a54cf62cabbb86db3092 lep 2015-10-25 16:11:55
Makefile fixes. 08a5e4d203b0917d78c9fb479ff197d04f473b33 lep 2015-10-25 10:51:12
Makefile improvements (-O3 -flto) 035a361468f060b12bc473e5ec6b0d59db0765d3 lep 2015-10-24 09:16:16
Moved tests into this folder. 099d64a6284a26eafde87ef274c1210455db6f3e lep 2015-10-05 21:29:42
pjass now checks against //! +rb instead of //+rb. Whitespace allowed. 27da8d5250f0b815ef5d8765e0eac766ac4cce6b lep 2015-10-04 21:52:31
Optimized //+rb marker check. cb4a086136acb1a8d7b0bc8397237bbfbdc56191 lep 2015-10-04 18:11:13
Now allows //+rb everywhere. 4f366b09d651baf0846ed2097db94d35fe42b5a0 lep 2015-10-04 17:43:38
Added test target to the Makefile 0f2763df549a97364087c346f408e52ca9456c8d lep 2015-10-04 15:43:49
Allowes //+rb right before a function to ignore any returnbug errors in that function. Not throughoutly tested. 230863ba145b74be6dc8062787c8c9c1806d1c7a lep 2015-10-04 14:06:30
Directive to suppress warnings. f1538a555e3009cfd8cbd900347d523abdd11953 lep 2015-10-04 12:17:08
More Makefile enhancements. 94c97f7c5f943f09ee575e96e388e9e2c947385c lep 2015-10-04 11:34:36
Makefile enhancements 8bc7132422db4a3b90a82da4a63f7cfa9fdbe2f5 lep 2015-06-09 09:30:42
Changed canconvertreturn behaviour. a1ba7f1d59cc40f56d0b3e4855c31b3d66019d9d lep 2015-04-15 16:35:52
Rewrote string handling to better handle newlines. 434a8fe566783969cb69eb73b2792cd74dac71d3 lep 2015-02-12 15:13:54
Rewrote rawcode handling for somewhat better error messages. 1e687d921b09149e244d16d7abca398c0639ad6d lep 2015-02-08 20:08:22
Undefined variables are not suggested for other undefined variables. c5561c56dde18bbcf1d05bdec7b50804757c5ef8 lep 2015-02-08 15:39:10
Also changed gNone to gAny in else and elesif cases. 485e75aaa14eb8ae10058305f7b75c1abd19eb82 lep 2015-02-06 15:20:15
Changed statement default return type from gNone to gAny. 7a054ad7b62d77ae4a17ac97d913a19675dad111 lep 2015-02-06 15:12:31
Propagate returncheck through statements. b8977b07e11f8fd335851e3a2d69cb473492f85b lep 2015-02-06 15:07:36
Commit 63af0d3664320cc94ee6e284c308b1983bcfdab2 - Changed //! +rb to //# +rb
This is needed because jasshelper seems to eat //!-comments.
Author: lep
Author date (UTC): 2015-10-27 17:17
Committer name: lep
Committer date (UTC): 2015-10-27 17:28
Parent(s): 13a129c8800d306c4117a54cf62cabbb86db3092
Signer:
Signing key:
Signing status: N
Tree: c37e14f1d6cc289ca9b622e6a5596e335fada457
File Lines added Lines deleted
.gitignore 1 0
Makefile 3 1
misc.h 1 1
token.l 1 1
File .gitignore changed (mode: 100644) (index 6f390ec..637a272)
1 1 *.o *.o
2 *.zip
2 3 nppBackup nppBackup
3 4 grammar.tab.h grammar.tab.h
4 5 grammar.tab.c grammar.tab.c
File Makefile changed (mode: 100644) (index fa7b62a..245559f)
... ... VERSION := $(shell git rev-parse --short HEAD)
3 3
4 4 # when testing and releasing, we can't run both in parallel # when testing and releasing, we can't run both in parallel
5 5 # but we also don't want to test when we're just making the zip # but we also don't want to test when we're just making the zip
6 # so this rule depends on test just when we're both releasing and testing
6 # additionaly we want to test before we make any zip file
7 # so these rules depend on test just when we're both releasing and testing
7 8 ifneq (,$(findstring release,$(MAKECMDGOALS))) ifneq (,$(findstring release,$(MAKECMDGOALS)))
8 9 ifneq (,$(findstring test,$(MAKECMDGOALS))) ifneq (,$(findstring test,$(MAKECMDGOALS)))
9 10
10 11 pjass-git-$(VERSION).zip: | test pjass-git-$(VERSION).zip: | test
12 pjass-git-$(VERSION)-src.zip: | test
11 13
12 14 endif endif
13 15 endif endif
File misc.h changed (mode: 100644) (index d7b380f..e014a0e)
9 9 #include <stdarg.h> #include <stdarg.h>
10 10 #define YYDEBUG 1 #define YYDEBUG 1
11 11
12 #define BUFSIZE 8192
12 #define BUFSIZE (16384)
13 13
14 14 struct typenode { struct typenode {
15 15 char *typename; char *typename;
File token.l changed (mode: 100644) (index 12669ad..11c6981)
... ... TABS [\x01-\x09\x0B\x0C\x0E-\x1F]
53 53 islinebreak = 1; islinebreak = 1;
54 54 isconstant = 0; isconstant = 0;
55 55
56 if(len == strlen("!+rb") && !strcmp(buf, "!+rb")){
56 if(len == strlen("#+rb") && !strcmp(buf, "#+rb")){
57 57 return RETURNBUG; return RETURNBUG;
58 58 }else{ }else{
59 59 return NEWLINE; return NEWLINE;
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