compiler/PEGFsaUncopiableState.st
changeset 515 b5316ef15274
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PEGFsaUncopiableState.st	Mon Aug 17 12:13:16 2015 +0100
@@ -0,0 +1,35 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+"{ NameSpace: Smalltalk }"
+
+PEGFsaState subclass:#PEGFsaUncopiableState
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-FSA'
+!
+
+!PEGFsaUncopiableState methodsFor:'as yet unclassified'!
+
+addTransition: t
+    self error: 'should not happen'
+!
+
+copy
+    ^ self
+!
+
+final: value
+    self error: 'should not happen'
+!
+
+priority: anObject
+    self error: 'should not happen'
+! !
+
+!PEGFsaUncopiableState methodsFor:'testing'!
+
+isStub
+    ^ true
+! !
+