src/commonMain/kotlin/guru/zoroark/lixy/LixyState.kt

Summary

Maintainability
A
0 mins
Test Coverage
package guru.zoroark.lixy
 
import guru.zoroark.lixy.matchers.LixyTokenMatcher
 
/**
* A state that contains matchers. The list of matchers is tested sequentially
* in order.
*/
data class LixyState(val matchers: List<LixyTokenMatcher>)