package binary

import (
	

	
)

// decodeCustomSection deserializes the data **not** associated with the "name" key in SectionIDCustom.
//
// See https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#custom-section%E2%91%A0
func decodeCustomSection( *bytes.Reader,  string,  uint64) ( *wasm.CustomSection,  error) {
	 := make([]byte, )
	_,  = .Read()

	 = &wasm.CustomSection{
		Name: ,
		Data: ,
	}

	return
}