File: README

package info (click to toggle)
libeval-linenumbers-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 88 kB
  • ctags: 2
  • sloc: perl: 15; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,282 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
NAME
    Eval::LineNumbers - Add line numbers to heredoc blocks that contain perl
    source code

SYNOPSIS
     use Eval::LineNumbers qw(eval_line_numbes);

     eval eval_line_numbers(<<END_HEREIS);
       code
     END_HEREIS

     eval eval_line_numbers($caller_level, $code)

DESCRIPTION
    Add a "#line "this-file" 392" comment to heredoc/hereis text that is
    going to be eval'ed so that error messages will point back to the right
    place.

    Please note: when you embed "\n" in your code, it gets expanded in
    double-quote hereis documents so it will mess up your line numbering.
    Use "\\n" instead when you can.

  Caller Level Example
    The second form of eval_line_numbers where a caller-level is provided is
    for the situation where the code is generated in one place and eval'ed
    in another place. The caller level should be the number of stack levels
    between where the heredoc was created and where it is eval'ed.

     sub example {
       return <<END_HEREIS
         code
    END_HEREIS
     }

     eval eval_line_numbers(1, example())

LICENSE
    Copyright (C) 2009 David Muir Sharnoff. Copyright (C) 2013 Google, Inc.

    This package may be used and redistributed under the terms of either the
    Artistic 2.0 or LGPL 2.1 license.