pugs-DrIFT-2.2.3.0: DrIFT with pugs-specific rules.

DrIFT.Perl6Class

Synopsis

Documentation

showMooseRoleDefSource

Arguments

:: NamespaceMangler 
-> String 
-> String

Perl 6 role definition

showPerl6RoleDefSource

Arguments

:: NamespaceMangler 
-> String 
-> String

Perl 6 role definition

showMooseClassDefSource

Arguments

:: NamespaceMangler

(e.g, (v6::AST:: ++))

-> String

role name (Hs datatype)

-> String

class name (Hs variant)

-> [(String, String, String)]

member type+name pairs

-> String

Perl 6 class definition

showPerl6ClassDefSource

Arguments

:: NamespaceMangler

(e.g, (v6::AST:: ++))

-> String

role name (Hs datatype)

-> String

class name (Hs variant)

-> [(String, String, String)]

member type+name pairs

-> String

Perl 6 class definition

showKV :: (PLit a, PLit b) => (a, b) -> DocSource

ts :: PLit a => a -> DocSource

class (Typeable a, Show a) => PLit a whereSource

typeclass for dumping literals in Perl 6 source code.

Methods

plShow :: a -> StringSource

Instances

PLit String 
(Typeable a, Show a) => PLit a 
PLit ByteString 
PLit ByteString 
PLit a => PLit [a] 
PLit a => PLit (Maybe a) 

showStringLiteral :: String -> [Doc]Source

Turn a string into source-code fitting Perl 6 string literal. May result in code for concatenation of several such literals. The restult is a [Doc] rather than a single String so that calling pretty-printers can render linebreaks at the correct places trivially with cat.

showSLiteral :: ByteString -> [Doc]Source

An FPS version of showStringLiteral. Since the pretty-printing library isn't fps, this isn't as fast as it might have been.

showLLiteral :: ByteString -> [Doc]Source

An FPS version of showStringLiteral. Since the pretty-printing library isn't fps, this isn't as fast as it might have been.