Sha256: 03a3e3d59e0871e4408865fd95f0931197f97c283dd421eb310303efa79d2255

Contents?: true

Size: 318 Bytes

Versions: 2

Compression:

Stored size: 318 Bytes

Contents

union MyUnion switch (UnionKey type)
{
    case ERROR:
        Error error;
    case MULTI:
        Multi things<>;


};

union SomeVeryLongUnionNamePushingSwitchParamToNewLine switch (
	SomeLongUnionKeyType type)
{
    case ERROR:
        Error error;
    case MULTI:
        Multi things<>;
    default:
		void;
};

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xdrgen-0.1.1 spec/fixtures/parser/union.x
xdrgen-0.1.0 spec/fixtures/parser/union.x