jtb 1.4.12-3 source package in Ubuntu

Changelog

jtb (1.4.12-3) unstable; urgency=medium

  * QA upload.
  * debian/control:
    + Bump debhelper compat to v13.
    + Bump Standards-Version to 4.6.2.
    + Update Vcs-* fields to use git packaging repo for Debian Salsa.
  * debian/compat: Dropped, now useless.
  * debian/rules: Use dh13 syntax.
  * debian/jtb.lintian-overrides: Dropped, not needed (lintian).

 -- Boyuan Yang <email address hidden>  Wed, 01 Feb 2023 13:46:37 -0500

Upload details

Uploaded by:
Debian QA Group
Uploaded to:
Sid
Original maintainer:
Debian QA Group
Architectures:
all
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe devel
Noble release universe devel
Mantic release universe devel
Lunar release universe devel

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
jtb_1.4.12-3.dsc 1.8 KiB c4c61781548b58cf72b648a6b7b9ff3c008191cd18c920c3eb226a69aa92d4d9
jtb_1.4.12.orig.tar.gz 23.7 MiB 3d8d534d9b2a3239d7d40f3befabab4ad490e68f305c75b09ef7bec67c70851e
jtb_1.4.12-3.debian.tar.xz 5.6 KiB 6dc1fe8616586e20780257c47014f6ac814e2f8513450f088859905ee69a5872

Available diffs

No changes file available.

Binary packages built by this source

jtb: syntax tree builder and visitors generator for JavaCC

 JTB (Java Tree Builder) is a syntax tree builder and visitors generator to be
 used in front of JavaCC (Java Compiler Compiler). It takes a JavaCC grammar
 file as input (usually a ".jtb" file) and automatically generates the
 following:
  * a set of syntax tree classes based on the productions in the grammar,
    utilizing the Visitor design pattern;
  * four interfaces: IVoidVisitor, IVoidArguVisitor, IRetVisitor,
    IRetArguVisitor;
  * four depth-first visitors: DepthFirstVoidVisitor, DepthFirstVoidArguVisitor,
    DepthFirstRetVisitor, DepthFirstREtArguVisitor, whose default methods simply
    visit the children of the current node;
  * a JavaCC grammar ".jj" file (jtb.out.jj by default), with the proper
    annotations to build the syntax tree during parsing (which then must be
    compiled with JavaCC).
 .
 New visitors, which subclass any generated one, can then override the default
 methods and perform various operations on and manipulate the generated syntax
 tree.