Skip to content

Commit

Permalink
Add Concat to index
Browse files Browse the repository at this point in the history
  • Loading branch information
David Dooling committed Aug 22, 2018
1 parent bf01734 commit 3affd26
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,26 @@
* limitations under the License.
*/

export * from "./lib/Microgrammar";
export * from "./lib/Primitives";
export * from "./lib/InputState";

export * from "./lib/Matchers";

export * from "./lib/InputState";
export { Concat } from "./lib/matchers/Concat";

export * from "./lib/Rep";

export * from "./lib/Ops";
export { flatten } from "./lib/matchers/Functions";

export * from "./lib/matchers/skip/Skip";

export * from "./lib/matchers/snobol/Span";

export { flatten } from "./lib/matchers/Functions";
export { isSuccessfulMatch } from "./lib/MatchPrefixResult";

export * from "./lib/Microgrammar";

export * from "./lib/Ops";

export { isPatternMatch } from "./lib/PatternMatch";

export { isSuccessfulMatch } from "./lib/MatchPrefixResult";
export * from "./lib/Primitives";

export * from "./lib/Rep";

0 comments on commit 3affd26

Please sign in to comment.