summaryrefslogtreecommitdiffstats
path: root/lib/Devel/CompleteStatement.pm
blob: 15cc8679f38be8dc11467cb54ac4d4502270fe74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Devel::CompleteStatement;
use strict;
use warnings;
# ABSTRACT: foo

use XSLoader;
XSLoader::load;

sub _call_parse {
    eval { _parse() };
}

1;