File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
brew install fribidi
32
32
brew install freetype
33
33
brew reinstall freetype
34
+ brew reinstall fontconfig
34
35
- name : Install Raku Dependencies
35
36
run : |
36
37
zef install --/test App::Prove6
Original file line number Diff line number Diff line change @@ -420,10 +420,9 @@ multi method AT-KEY(LValue:D $_) is rw { self.can($_)[0](self) }
420
420
multi method AT-KEY (Str : D $ _ ) is rw {
421
421
with self . can ($ _ ) {
422
422
my & meth := . [0 ];
423
- my & curried ;
424
- Proxy . new :
425
- FETCH => -> $ { & curried // = -> | c { & meth (self , | c); } },
426
- STORE => -> $ , $ val { & meth (self ) = $ val ; }
423
+ sub FETCH ($) { -> | c { & meth (self , | c) } }
424
+ sub STORE ($ , & val ) { & meth (self ) = & val }
425
+ Proxy . new : : & FETCH , : & STORE ;
427
426
}
428
427
else {
429
428
die X::Method::NotFound . new ( : method($ _ ), : typename(self .^ name ) )
You can’t perform that action at this time.
0 commit comments