pegkit icon indicating copy to clipboard operation
pegkit copied to clipboard

'Parsing Expression Grammar' toolkit for Cocoa/Objective-C

Results 29 pegkit issues
Sort by recently updated
recently updated
newest added

Minor feedback: the README contains a typo in the link to the Grammars section: `github.com/itod/pegkit#grammars` is misspelled as `github.com/itod/pegkit#garmmars`.

The first line in this method is: NSParameterAssert(c < STATE_COUNT); Since 'c' is an int32_t value holding a Unicode character and STATE_COUNT is 256, this line is easily triggered when...

I downloaded the current master (as of 7 August 2017) and it compiles nicely in 64 bits in Xcode 8.2.1. However, I could not compile any OS X target in...

Hi, some designated initializer[s] will setString: and also setStream: properties, more than once, it seems, and in a way that makes `NSAssert(!_stream, @"")` fail in `PKReader`. For minimizing the problem...

This is a fix for issue #52 * Removes the `grammar`NSTextView KVO. * Gets rid of enable/disable state for `textView` since it breaks undo history and I don't think it...

This is a fix for issue #47. It adds line number to the text view. It exposes a bug where the error alert box sometimes displays the wrong line number....

The output app `ParseAppGen` is missing the template library. When running the app outside of XCode or double clicking on saved file will cause app to crash. This is the...

`Feature Request` I hope you don't mind my creating issues as I find myself wishing I could do something in PegKit. PegKit is awesome and if I did not like...

`Feature Request` - Change to ARC Is there a reason `ParserGenApp` is not using ARC? Adding new code and functionality will be easier if we don't need to do `autorelease`...

`BUG` When clicking `File`->`Save`or `Generate` in `ParseGenApp` the undo history is lost. This makes it hard to quickly test a new grammar entry and then rollback to pre-edit condition. The...