@plurnk/plurnk-mimetypes-text-plsql 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ import { Lexer } from "antlr4ng";
2
+ export default abstract class PlSqlLexerBase extends Lexer {
3
+ IsNewlineAtPos(pos: number): boolean;
4
+ }
5
+ //# sourceMappingURL=PlSqlLexerBase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlSqlLexerBase.d.ts","sourceRoot":"","sources":["../../src/generated/PlSqlLexerBase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,KAAK,EAAwC,MAAM,UAAU,CAAC;AAEpF,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,cAAe,SAAQ,KAAK;IACxD,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;CAKrC"}
@@ -0,0 +1,8 @@
1
+ import { Lexer } from "antlr4ng";
2
+ export default class PlSqlLexerBase extends Lexer {
3
+ IsNewlineAtPos(pos) {
4
+ const la = this.inputStream.LA(pos);
5
+ return la == -1 || String.fromCharCode(la) == '\n';
6
+ }
7
+ }
8
+ //# sourceMappingURL=PlSqlLexerBase.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlSqlLexerBase.js","sourceRoot":"","sources":["../../src/generated/PlSqlLexerBase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,KAAK,EAAwC,MAAM,UAAU,CAAC;AAEpF,MAAM,CAAC,OAAO,OAAgB,cAAe,SAAQ,KAAK;IACxD,cAAc,CAAC,GAAW;QACxB,MAAM,EAAE,GAAG,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;QACpC,OAAO,EAAE,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC;IACrD,CAAC;CAEF"}