txt stringlengths 202 72.4k |
|---|
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: dg-check.raku
### ----------------------------------------------------
use v6;
use lib 'lib';
use ABC;
my @matches = $*IN.slurp.comb(m/ <ABC::tune> /, :match);
my %dg_notes = {
'g' => 1... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: META6.json
### ----------------------------------------------------
{
"perl" : "6.*",
"name" : "ABC",
"version" : "0.7.2",
"auth" : "zef:colomon",
... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is permitted to copy and d... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: README.md
### ----------------------------------------------------
# ABC
This module is a set of tools for dealing with [ABC music notation](https://abcnotation.com/wiki/abc:standard:v2.1) fi... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: playing.raku
### ----------------------------------------------------
use v6;
use lib 'lib';
use ABC;
my $abc = q«X:64
T:Cuckold Come Out o' the Amrey
S:Northumbrian Minstrelsy
M:4/4
L:1/8
K... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: .travis.yml
### ----------------------------------------------------
---
sudo: false
language: perl6
perl6:
- latest
|
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/05-actions.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Header;
use ABC::Tune;
use ABC::Grammar;
use ABC::Actions;
use ABC::Note;
use ABC::Ste... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/10-utils.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Utils;
is default-length-from-meter("4/4"), "1/8", "4/4 defaults to eighth note";
is ... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/08-transpose.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Grammar;
use ABC::Header;
use ABC::Tune;
use ABC::Duration;
use ABC::Note;
use ABC:... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/02-key.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Grammar;
use ABC::Utils;
use ABC::KeyInfo;
{
my $key = ABC::KeyInfo.new("D");
is ... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/06-duration.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Duration;
is duration-from-parse("2", "3").ticks.perl, (2/3).perl, "2/3 works proper... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/04-header.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Header;
isa-ok ABC::Header.new, ABC::Header, "Can create ABC::Header object";
{
m... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/07-stringify.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Grammar;
use ABC::Header;
use ABC::Tune;
use ABC::Duration;
use ABC::Note;
use ABC:... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/09-context.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Context;
use ABC::Grammar;
use ABC::Actions;
{
my $context = ABC::Context.new("C"... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/03-file.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Grammar;
{
my $match = ABC::Grammar.parse(slurp("samples.abc"), :rule<tune_file>);
... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: t/01-regexes.rakutest
### ----------------------------------------------------
use v6;
use Test;
use ABC::Grammar;
{
my $match = ABC::Grammar.parse('"Cmin"', :rule<chord_or_text>);
is... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Utils.rakumod
### ----------------------------------------------------
use v6;
use ABC::Grammar;
use ABC::Context;
use ABC::Note;
package ABC::Utils {
sub str-to-stem($note) is ex... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Note.rakumod
### ----------------------------------------------------
use v6;
use ABC::Duration;
use ABC::Pitched;
class ABC::Note does ABC::Duration does ABC::Pitched {
has $.ac... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Chord.rakumod
### ----------------------------------------------------
use v6;
use ABC::Pitched;
class ABC::Chord does ABC::Pitched {
has $.main-note;
has $.main-accidental;
... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Header.rakumod
### ----------------------------------------------------
use v6;
class ABC::Header {
has @.lines; # array of Pairs representing each line of the ABC header
... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/GraceNotes.rakumod
### ----------------------------------------------------
use v6;
use ABC::Pitched;
class ABC::GraceNotes does ABC::Pitched {
has $.acciaccatura;
has @.note... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Grammar.rakumod
### ----------------------------------------------------
use v6;
# use Grammar::Tracer;
# Originally based on https://web.archive.org/web/20120201072612/http://www.nor... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Duration.rakumod
### ----------------------------------------------------
use v6;
role ABC::Duration {
has $.ticks;
multi sub duration-from-parse($top) is export { #OK
... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Context.rakumod
### ----------------------------------------------------
use ABC::KeyInfo;
class ABC::Context {
has $.key-name;
has $.key-info;
has $.meter;
has $.leng... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/ToLilypond.rakumod
### ----------------------------------------------------
use v6;
use ABC::Header;
use ABC::Tune;
use ABC::Grammar;
use ABC::Actions;
use ABC::Duration; #OK
use ABC::... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/KeyInfo.rakumod
### ----------------------------------------------------
use v6;
use ABC::Grammar;
#SHOULD: rename parcel to list?
sub parcel-first-if-needed($a) {
$a ~~ List ?? $... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Rest.rakumod
### ----------------------------------------------------
use v6;
use ABC::Duration;
class ABC::Rest does ABC::Duration {
has $.type;
method new($type, ABC::Dura... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Actions.rakumod
### ----------------------------------------------------
use v6;
use ABC::Header;
use ABC::Tune;
use ABC::Duration;
use ABC::Note;
use ABC::Rest;
use ABC::Tuplet;
use ... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Pitched.rakumod
### ----------------------------------------------------
use v6;
role ABC::Pitched {
method transpose($pitch-changer) { ... }
}
|
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/BrokenRhythm.rakumod
### ----------------------------------------------------
use v6;
use ABC::Duration;
use ABC::Pitched;
use ABC::Note;
use ABC::Stem;
class ABC::BrokenRhythm does ... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Tuplet.rakumod
### ----------------------------------------------------
use v6;
use ABC::Duration;
use ABC::Pitched;
class ABC::Tuplet does ABC::Duration does ABC::Pitched {
has ... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Tune.rakumod
### ----------------------------------------------------
use v6;
use ABC::Header;
use ABC::Pitched;
class ABC::Tune {
has $.header;
has @.music;
multi me... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/LongRest.rakumod
### ----------------------------------------------------
use v6;
class ABC::LongRest {
has $.measures_rest;
method new($measures_rest) {
self.bless(:... |
### ----------------------------------------------------
### -- ABC
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: lib/ABC/Stem.rakumod
### ----------------------------------------------------
use v6;
use ABC::Duration;
use ABC::Pitched;
class ABC::Stem does ABC::Duration does ABC::Pitched {
has @.no... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: META6.json
### ----------------------------------------------------
{
"perl" : "6.*",
"name" : "ADT",
"version" : "0.5",
"description" : "Algebraic Data Types inspired by Haskell.",
"d... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: README.md
### ----------------------------------------------------
Algebraic Data Types
====================
This module implements algebraic data types inspired by the Haskell syntax.
See below for limi... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: .travis.yml
### ----------------------------------------------------
language: perl6
perl6:
- latest
install:
- rakudobrew build zef
- zef install .
|
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: t/01-tree.t
### ----------------------------------------------------
use Test;
use ADT;
plan 7;
{
my %res = create_adt("Tree = Branch Tree left, Tree right | Leaf Str storage");
my \Tree = %res<T... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: t/04-whitespace.t
### ----------------------------------------------------
use Test;
use ADT;
plan 5;
{
dies-ok { create_adt("arghlebarghle") }, "sanity";
ok create_adt(q:to/TREE/), "simple mult... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: t/03-positional.t
### ----------------------------------------------------
use Test;
use ADT;
plan 8;
{
my %res = create_adt("Positionals = One Str one1 | Two Str a, Str b | Three Str x, Str y, Str ... |
### ----------------------------------------------------
### -- ADT
### -- Licenses:
### -- Authors:
### -- File: t/02-EXPORT.t
### ----------------------------------------------------
use Test;
eval-lives-ok q{
use ADT "Tree = Branch Tree left, Tree right | Leaf Str storage";
my $a = Tree.new-leaf("Hello");... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:jjatria",
"authors": [
... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: README.md
### ----------------------------------------------------
### -- Chunk 1 of 2
# NAME
AI::FANN
# SYNOP... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: README.md
### ----------------------------------------------------
### -- Chunk 2 of 2
If called with a positio... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: dist.ini
### ----------------------------------------------------
name = AI-FANN
[ReadmeFromPod]
enable = false... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: t/imports.t
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
is-deeply d... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: t/errors.t
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::FANN ... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: t/train-data.t
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::F... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: t/creation.t
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::FAN... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: t/training.t
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::FAN... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN.rakumod
### ----------------------------------------------------
### -- Chunk 1 of 2
use AI::FANN::R... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN.rakumod
### ----------------------------------------------------
### -- Chunk 2 of 2
ATE_MEM FANN_E_... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw.rakumod
### ----------------------------------------------------
use AI::FANN::Raw::Base;
use AI... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/Base.rakumod
### ----------------------------------------------------
unit module AI::FANN::Raw:... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/Training.rakumod
### ----------------------------------------------------
unit module AI::FANN::... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/Cascade.rakumod
### ----------------------------------------------------
unit module AI::FANN::R... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/Error.rakumod
### ----------------------------------------------------
unit module AI::FANN::Raw... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/Creation.rakumod
### ----------------------------------------------------
unit module AI::FANN::... |
### ----------------------------------------------------
### -- AI::FANN
### -- Licenses: Artistic-2.0
### -- Authors: Jonathan Scott Duff <duff@pobox.com>, José Joaquín Atria <jjatria@cpan.org>
### -- File: lib/AI/FANN/Raw/IO.rakumod
### ----------------------------------------------------
unit module AI::FANN::Raw::I... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: META6.json
### ----------------------------------------------------
{
"name" : "AI::Gator",
"authors" : [
"Brian Duggan"
],
"provides" : {
"AI::Gator" : "lib/AI/Gator.... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: LICENSE
### ----------------------------------------------------
MIT License
Copyright (c) 2025 Brian Duggan
Permission is hereby granted, free of charge, to any person obtaining a ... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: README.md
### ----------------------------------------------------
[](https://github.c... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: t/01-session.rakutest
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::Gator::Session;
use JSON::Fast;
use Log::Async;
logger.untapped-... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: t/03-integration.rakutest
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::Gator;
use AI::Gator::Session;
use JSON::Fast;
use Log::Async... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: t/02-gator.rakutest
### ----------------------------------------------------
#!/usr/bin/env raku
use Test;
use AI::Gator;
use AI::Gator::Session;
use JSON::Fast;
use Log::Async;
log... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: t/00-load.rakutest
### ----------------------------------------------------
#!raku
use Test;
plan 1;
use-ok 'AI::Gator';
|
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: lib/AI/Gator.rakumod
### ----------------------------------------------------
use AI::Gator::Session;
use AI::Gator::ToolBuilder;
use Log::Async;
use Terminal::ANSI::OO 't';
use HTTP:... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: lib/AI/Gator/ToolBuilder.rakumod
### ----------------------------------------------------
unit module AI::Gator::ToolBuilder;
use Log::Async;
sub build-tool(&func) is export {
my $... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: lib/AI/Gator/Tools.rakumod
### ----------------------------------------------------
unit module AI::Gator::Tools;
use Log::Async;
use AI::Gator::ToolBuilder;
our @TOOLS;
sub get-to... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: lib/AI/Gator/Session.rakumod
### ----------------------------------------------------
#!raku
use Log::Async;
use JSON::Fast;
class AI::Gator::Session {
has @.messages;
has @.too... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: eg/chat-tools.raku
### ----------------------------------------------------
use AI::Gator;
#| Get real time weather for a given city
sub get_weather(
Str :$city! #= The city to ge... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: eg/chat.raku
### ----------------------------------------------------
use AI::Gator;
my AI::Gator $gator = AI::Gator::Gemini.new: model => 'gemini-2.0-flash';
my AI::Gator::Session $... |
### ----------------------------------------------------
### -- AI::Gator
### -- Licenses: MIT
### -- Authors: Brian Duggan
### -- File: eg/tools/weather.raku
### ----------------------------------------------------
#| Get real time weather for a given city
our sub get_weather(
Str :$city! #= The city to get the wea... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: META6.json
### ----------------------------------------------------
{
"auth" : "github:drforr",
"authors" : [
"Jeffrey Goff <drforr@pobox.com... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: README.md
### ----------------------------------------------------
ANTLR4
=======
ANTLR4 proides an ANTLR4 to Perl6 Grammar converter.
The grammar,... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: .travis.yml
### ----------------------------------------------------
language: perl6
sudo: true
perl6:
- latest
install:
- rakudobrew build-zef
... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: dist.ini
### ----------------------------------------------------
[ReadmeFromPod]
disable = true
|
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/15-rule-modifiers.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 5;
# XXX Please note tha... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/17-modes.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 2;
# '-> more' &c are per-alterna... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/01-parse.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar::Parser;
use Test;
plan 1;
######################... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/12-alternation.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 6;
is ANTLR4::Grammar.to-st... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/13-grouping.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 9;
# No way to generate an emp... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/11-concatenation.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 9;
# No, I'm not going to... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/10-basic-grammar.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 4;
sub compile( $orig ) {... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/04-use-parser.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
#plan 50;
plan 2;
sub compile( $n... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/16-term-modifiers.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 1;
is ANTLR4::Grammar.to... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/03-corpus-compile.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 48;
sub compile( $name )... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/meta.t
### ----------------------------------------------------
use v6;
use lib 'lib';
use Test;
use Test::META;
meta-ok;
done-testing;
|
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/02-corpus.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar::Parser;
use Test;
plan 54;
my $p = ANTLR4::Gram... |
### ----------------------------------------------------
### -- ANTLR4::Grammar
### -- Licenses: Artistic-2.0
### -- Authors: Jeffrey Goff <drforr@pobox.com>
### -- File: t/14-grammar-modifiers.t
### ----------------------------------------------------
use v6;
use ANTLR4::Grammar;
use Test;
plan 4;
# The double comme... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: META6.json
### -----------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: LICENSE
### --------------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: README.md
### ------------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: t/endpoint.t
### ---------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: t/00-meta.t
### ----------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: t/meta.t
### -------------------------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: examples/ruthless-mod.raku
### -------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: examples/toxicity.raku
### -----------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: examples/automessage.raku
### --------------------... |
### ----------------------------------------------------
### -- API::Discord
### -- Licenses: BSD-3-Clause
### -- Authors: Alastair 'altreus' Douglas <altreus@altre.us>, Jonathan 'jnthn' Worthington <jnthn@jnthn.net>, Kane 'kawaii' Valentine <kane@cute.im>
### -- File: examples/autostar.raku
### -----------------------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.