UNPKG

llparse

Version:

[![Build Status](https://secure.travis-ci.org/indutny/llparse.svg)](http://travis-ci.org/indutny/llparse) [![NPM version](https://badge.fury.io/js/llparse.svg)](https://badge.fury.io/js/llparse)

14 lines (11 loc) 190 B
'use strict'; class Case { constructor(type, next) { this.type = type; this.next = next; } linearize() { throw new Error('Not implemented'); } } module.exports = Case;