Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created April 12, 2024 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/a6862ee986d504a5d9594b15798b8ca2 to your computer and use it in GitHub Desktop.
Save Whateverable/a6862ee986d504a5d9594b15798b8ca2 to your computer and use it in GitHub Desktop.
bisectable6
use Test; is (class {}.^ver // v0), v0
Bisecting: 54 revisions left to test after this (roughly 6 steps)
[8e840a5104fe9c2406fef2b31b0a87bf7ae3723f] Streamline Metamodel::DefaultParent
»»»»» Testing 8e840a5104fe9c2406fef2b31b0a87bf7ae3723f
»»»»» Script output:
ok 1 -
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 0
»»»»» Bisecting by exit code
»»»»» Current exit code is 0, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “old”
»»»»» -------------------------------------------------------------------------
»»»»» Testing 3267834f276368f9b9a7aca19d6ae7340d82126c
»»»»» Script output:
ok 1 -
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 0
»»»»» Bisecting by exit code
»»»»» Current exit code is 0, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “old”
»»»»» -------------------------------------------------------------------------
»»»»» Testing 3c2182652db6a39512b4b902c0a1103c7793646a
»»»»» Script output:
not ok 1 -
# Failed test at /tmp/rjNTE5vYap line 1
# expected: '0'
# got: ''
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 1
»»»»» Bisecting by exit code
»»»»» Current exit code is 1, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “new”
»»»»» -------------------------------------------------------------------------
»»»»» Testing cf4babd282b264ed2315aad99ef241c1e250be43
»»»»» Script output:
ok 1 -
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 0
»»»»» Bisecting by exit code
»»»»» Current exit code is 0, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “old”
»»»»» -------------------------------------------------------------------------
»»»»» Testing cf773dc2df48a40f299cdaf70cb1afdb6aa84094
»»»»» Cannot test this commit. Reason: Commit exists, but an executable could not be built for it
»»»»» Therefore, skipping this revision
»»»»» -------------------------------------------------------------------------
»»»»» Testing 68cd850fb85af6ee5bc2ee1a98fecd55f04215f5
»»»»» Script output:
ok 1 -
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 0
»»»»» Bisecting by exit code
»»»»» Current exit code is 0, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “old”
»»»»» -------------------------------------------------------------------------
»»»»» Testing 0422989966a0ec827c5be983d22298a0ed8b0af6
»»»»» Script output:
ok 1 -
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
»»»»» Script exit code: 0
»»»»» Bisecting by exit code
»»»»» Current exit code is 0, exit code on “old” revision is 0
»»»»» If exit code is not the same as on “old” revision, this revision will be marked as “new”
»»»»» Therefore, marking this revision as “old”
3c2182652db6a39512b4b902c0a1103c7793646a is the first new commit
commit 3c2182652db6a39512b4b902c0a1103c7793646a
Author: Elizabeth Mattijsen <liz@raku.rocks>
Date: Tue Feb 27 17:48:34 2024 +0100
Streamline name / ver / auth / api setting
All of the methods that do this, accept these settings as named
arguments. So add a "set_identity" method in the Versioning role
that will set the appropriate attributes from the info of the
named arguments.
This also centralizes the handling of unnamed classes, making sure
that any counter used is updated threadsafely, so that we can not
get two classes with the same (anonymous) name.
Also change the auth and api to strings, as they will always be
strings.
src/Perl6/Metamodel/ClassHOW.nqp | 35 ++++++++++++-------------------
src/Perl6/Metamodel/ConcreteRoleHOW.nqp | 14 ++++++-------
src/Perl6/Metamodel/ModuleHOW.nqp | 12 ++++-------
src/Perl6/Metamodel/NativeHOW.nqp | 13 ++----------
src/Perl6/Metamodel/NativeRefHOW.nqp | 7 ++-----
src/Perl6/Metamodel/ParametricRoleHOW.nqp | 23 +++++++++-----------
src/Perl6/Metamodel/Versioning.nqp | 32 +++++++++++++++++++++-------
7 files changed, 62 insertions(+), 74 deletions(-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment