Unix and Linux Discussions Tagged with syntax |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
8,575 |
SCO |
|
|
|
6 |
3,349 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,088 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,716 |
Shell Programming and Scripting |
|
|
|
3 |
8,044 |
Shell Programming and Scripting |
|
|
|
2 |
1,901 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,231 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,016 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,574 |
Shell Programming and Scripting |
|
|
|
2 |
2,106 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,704 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,251 |
Shell Programming and Scripting |
|
|
|
1 |
10,608 |
Programming |
|
|
|
15 |
8,487 |
Ubuntu |
|
|
|
7 |
1,533 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
937 |
Shell Programming and Scripting |
|
|
|
2 |
2,366 |
Homework & Coursework Questions |
|
|
|
3 |
1,458 |
Programming |
|
|
|
4 |
5,842 |
Shell Programming and Scripting |
|
|
|
4 |
1,382 |
Shell Programming and Scripting |
|
|
|
10 |
3,249 |
Shell Programming and Scripting |
|
|
|
5 |
2,485 |
Shell Programming and Scripting |
|
|
|
4 |
1,176 |
Shell Programming and Scripting |
|
|
|
5 |
2,541 |
Homework & Coursework Questions |
|
|
|
4 |
1,325 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,791 |
Programming |
|
|
|
3 |
2,578 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
7,453 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,900 |
Shell Programming and Scripting |
|
|
|
2 |
2,372 |
Shell Programming and Scripting |
|
|
|
4 |
4,640 |
Shell Programming and Scripting |
|
|
|
3 |
2,302 |
Shell Programming and Scripting |
|
|
|
0 |
4,754 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,436 |
OS X (Apple) |
|
|
|
2 |
8,043 |
Shell Programming and Scripting |
|
|
|
13 |
19,918 |
Shell Programming and Scripting |
|
|
|
1 |
2,866 |
Programming |
|
|
|
5 |
1,975 |
Shell Programming and Scripting |
|
|
|
1 |
4,604 |
HP-UX |
|
|
|
2 |
13,505 |
Shell Programming and Scripting |
syntax(3) User Contributed Perl Documentation syntax(3)
NAME
syntax - Activate syntax extensions
VERSION
version 0.004
SYNOPSIS
# either
use syntax 'foo';
# or
use syntax foo => { ... };
# or
use syntax qw( foo bar ), baz => { ... };
DESCRIPTION
This module activates community provided syntax extensions to Perl. You pass it a feature name, and optionally a scalar with arguments, and
the dispatching system will load and install the extension in your package.
The import arguments are parsed with Data::OptList. There are no standardised options. Please consult the documentation for the specific
syntax feature to find out about possible configuration options.
The passed in feature names are simply transformed: "function" becomes Syntax::Feature::Function and "foo_bar" would become
"Syntax::Feature::FooBar".
METHODS
import
syntax->import( @spec );
This method will dispatch the syntax extension setup to the specified feature handlers for the calling package.
import_into
syntax->import_into( $into, @spec );
Same as "import", but performs the setup in $into instead of the calling package.
unimport
syntax->unimport( @features );
This method will trigger uninstallations of the @features from the calling package.
unimport_from
syntax->unimport_from( $from, @features );
Same as "unimport", but will uninstall the @features from $from.
RECOMMENDED FEATURES
o Syntax::Feature::Function
Activates functions with parameter signatures.
SEE ALSO
Syntax::Feature::Function, Devel::Declare
BUGS
Please report any bugs or feature requests to bug-syntax@rt.cpan.org or through the web interface at:
http://rt.cpan.org/Public/Dist/Display.html?Name=syntax
AUTHOR
Robert 'phaylon' Sedlacek <rs@474.at>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Robert 'phaylon' Sedlacek.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
perl v5.16.2 2012-05-18 syntax(3)