Unix and Linux Discussions Tagged with syntax error |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
6,319 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
12,355 |
Shell Programming and Scripting |
|
|
|
5 |
3,577 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
25,774 |
Shell Programming and Scripting |
|
|
|
2 |
4,297 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,288 |
Shell Programming and Scripting |
|
|
|
5 |
8,710 |
Shell Programming and Scripting |
|
|
|
15 |
24,366 |
Ubuntu |
|
|
|
14 |
10,288 |
Shell Programming and Scripting |
|
|
|
1 |
4,002 |
Ubuntu |
|
|
|
6 |
1,948 |
Shell Programming and Scripting |
|
|
|
3 |
3,324 |
Shell Programming and Scripting |
|
|
|
7 |
6,042 |
Linux |
|
|
|
3 |
2,996 |
Shell Programming and Scripting |
|
|
|
3 |
3,234 |
Programming |
|
|
|
5 |
3,751 |
Shell Programming and Scripting |
|
|
|
1 |
8,120 |
Shell Programming and Scripting |
|
|
|
8 |
11,200 |
Shell Programming and Scripting |
|
|
|
1 |
7,485 |
Shell Programming and Scripting |
|
|
|
5 |
13,456 |
Shell Programming and Scripting |
|
|
|
4 |
22,585 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
20,386 |
Shell Programming and Scripting |
|
|
|
7 |
50,358 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,273 |
Shell Programming and Scripting |
|
|
|
2 |
10,796 |
Shell Programming and Scripting |
|
|
|
3 |
14,391 |
Shell Programming and Scripting |
|
|
|
4 |
19,023 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,893 |
UNIX for Dummies Questions & Answers |
|
|
|
22 |
46,048 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,076 |
Programming |
|
|
|
1 |
2,932 |
UNIX for Dummies Questions & Answers |
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)