Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



PPI::Token::Comment(3)               User Contributed Perl Documentation              PPI::Token::Comment(3)



NAME
       PPI::Token::Comment - A comment in Perl source code

INHERITANCE
         PPI::Token::Comment
         isa PPI::Token
             isa PPI::Element

SYNOPSIS
         # This is a PPI::Token::Comment

         print "Hello World!"; # So it this

         $string =~ s/ foo  # This, unfortunately, is not :(
               bar
               /w;

DESCRIPTION
       In PPI, comments are represented by "PPI::Token::Comment" objects.

       These come in two flavours, line comment and inline comments.

       A "line comment" is a comment that stands on its own line. These comments hold their own newline and
       whitespace (both leading and trailing) as part of the one "PPI::Token::Comment" object.

       An inline comment is a comment that appears after some code, and continues to the end of the line.
       This does not include whitespace, and the terminating newlines is considered a separate
       PPI::Token::Whitespace token.

       This is largely a convenience, simplifying a lot of normal code relating to the common things people
       do with comments.

       Most commonly, it means when you "prune" or "delete" a comment, a line comment disappears taking the
       entire line with it, and an inline comment is removed from the inside of the line, allowing the
       newline to drop back onto the end of the code, as you would expect.

       It also means you can move comments around in blocks much more easily.

       For now, this is a suitably handy way to do things. However, I do reserve the right to change my mind
       on this one if it gets dangerously anachronistic somewhere down the line.

METHODS
       Only very limited methods are available, beyond those provided by our parent PPI::Token and
       PPI::Element classes.

   line
       The "line" accessor returns true if the "PPI::Token::Comment" is a line comment, or false if it is an
       inline comment.

SUPPORT
       See the support section in the main module.

AUTHOR
       Adam Kennedy <adamk@cpan.org>

COPYRIGHT
       Copyright 2001 - 2011 Adam Kennedy.

       This program is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

       The full text of the license can be found in the LICENSE file included with this module.



perl v5.16.2                                     2011-02-25                           PPI::Token::Comment(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.