Add support for OpenEdge ABL language

This commit is contained in:
Abe Voelker
2012-02-09 09:57:50 -06:00
parent a33e7befe1
commit d32c9e88b4
7 changed files with 57 additions and 0 deletions

8
test/fixtures/latex.cls vendored Normal file
View File

@@ -0,0 +1,8 @@
% latex.cls
%
% A barebones LaTeX2e class file
\def\author{Abe Voelker}
\def\fileversion{0.1}
\NeedsTeXFormat{LaTeX2e}

10
test/fixtures/openedge.cls vendored Normal file
View File

@@ -0,0 +1,10 @@
USING Progress.Lang.*.
CLASS HelloWorld:
CONSTRUCTOR PUBLIC HelloWorld():
SUPER().
MESSAGE "Hello, world!".
END CONSTRUCTOR.
END CLASS.

1
test/fixtures/openedge.p vendored Normal file
View File

@@ -0,0 +1 @@
MESSAGE "Hello, world!".