This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ID] | |
| shotgun99 | |
| i gotta a maus woooooohq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tomas907 | |
| docela ferq | |
| [>8$% | |
| ?\%2 | |
| [>8$% | |
| ?[%2 | |
| ?T%2 | |
| ?V%2 | |
| ?S%2 | |
| ?R%2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "honorTitles" : [ | |
| 201326594, | |
| 201326597, | |
| 201326601, | |
| 234881026, | |
| 234881029, | |
| 234881024, | |
| 218103808, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "vehicles" : { | |
| "18170200" : { | |
| "isAlive" : true, | |
| "vehicleType" : "germany:PzVI_Tiger_P", | |
| "events" : {}, | |
| "name" : "WolfhundA1", | |
| "isTeamKiller" : false, | |
| "clanAbbrev" : "", | |
| "team" : 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package WR::Parser::LL; | |
| use strict; | |
| use Moose; | |
| use namespace::autoclean; | |
| use IO::String; | |
| =pod | |
| =head1 ABSTRACT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| package Foobar; | |
| use Moose; | |
| use JSPL; | |
| use Try::Tiny qw/catch try/; | |
| has 'foo' => (is => 'rw', isa => 'Num', required => 1, reader => 'get_foo', writer => 'set_foo'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dumpAttributes(aMooseClass) { | |
| aMooseClass.meta().get_all_attributes().forEach(function(attr) { | |
| say("aMooseClass has attribute: ", attr.name()); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myClass = new MooseClassFactory() | |
| .name('MyMooseClass') | |
| .with(['SomeRandomRole', 'SomeOtherRole' ]) | |
| .extends('MyOtherMooseClass') | |
| .has('foo', { is: 'ro', isa: 'Str', required: true }) | |
| .has('bar', { is: 'rw', isa: 'Str', required: true, defaultValue: function() { return "foo " + " bar" } }) | |
| .method('fweep', function() { | |
| say("fweeping up a storm!"); | |
| }) | |
| .makeImmutable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use Moose::Util::TypeConstraints; | |
| use Moose::Util (); | |
| my $TYPE_REGISTRY = Moose::Util::TypeConstraints->get_type_constraint_registry; | |
| $TYPE_REGISTRY->add_type_constraint( | |
| Moose::Meta::TypeConstraint::Parameterizable->new( | |
| name => 'DBref', | |
| package_defined_in => __PACKAGE__, | |
| parent => Moose::Util::TypeConstraints::find_type_constraint('Item'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| has 'foo' => (is => 'rw', isa => 'DBref[Object::Foo]') |