~ubuntu-branches/ubuntu/precise/padre/precise

« back to all changes in this revision

Viewing changes to lib/Padre/Task/PPI/FindUnmatchedBrace.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2010-05-08 09:17:22 UTC
  • mfrom: (1.2.1 upstream) (10.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100508091722-y6008jtk0ap6znyn
Tags: 0.60.ds1-3
rules: run tests with HOME=$fake_home to avoud failing when $HOME points
to a non-existent location. Closes: #579289

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
use 5.008;
4
4
use strict;
5
5
use warnings;
6
 
 
7
 
our $VERSION = '0.50';
8
 
 
9
 
use base 'Padre::Task::PPI';
10
 
use Padre::Wx();
11
 
use PPIx::EditorTools::FindUnmatchedBrace;
 
6
use Padre::Wx                             ();
 
7
use Padre::Task::PPI                      ();
 
8
use PPIx::EditorTools::FindUnmatchedBrace ();
 
9
 
 
10
our $VERSION = '0.60';
 
11
our @ISA     = 'Padre::Task::PPI';
12
12
 
13
13
=pod
14
14
 
15
15
=head1 NAME
16
16
 
17
 
Padre::Task::PPI::FindUnmatchedBrace - PPI-based unmatched-brace-finder
 
17
Padre::Task::PPI::FindUnmatchedBrace - C<PPI> based unmatched brace finder
18
18
 
19
19
=head1 SYNOPSIS
20
20
 
23
23
  );
24
24
  # pass "text => 'foo'" if you want to set the code manually
25
25
  # otherwise, the current document will be used
26
 
  
 
26
 
27
27
  $bracefinder->schedule();
28
28
 
29
29
=head1 DESCRIPTION
98
98
 
99
99
=head1 COPYRIGHT AND LICENSE
100
100
 
101
 
Copyright 2008-2009 The Padre development team as listed in Padre.pm.
 
101
Copyright 2008-2010 The Padre development team as listed in Padre.pm.
102
102
 
103
103
This program is free software; you can redistribute it and/or
104
104
modify it under the same terms as Perl 5 itself.
105
105
 
106
106
=cut
107
107
 
108
 
# Copyright 2008-2009 The Padre development team as listed in Padre.pm.
 
108
# Copyright 2008-2010 The Padre development team as listed in Padre.pm.
109
109
# LICENSE
110
110
# This program is free software; you can redistribute it and/or
111
111
# modify it under the same terms as Perl 5 itself.