Make SegmentedVector Noncopyable
Created attachment 192538 [details] Patch
Comment on attachment 192538 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=192538&action=review r=me > Source/JavaScriptCore/bytecompiler/LabelScope.h:79 > + struct LabelScopeRef { Let's make this a class. The idiomatic name for this in WebKit would be "LabelScopePtr".
In future, I think we should just refactor LabelScope to be a true malloc'd, refcounted object, that knows how to notify the byte code generator when it is destroyed.
Committed r145401: <http://trac.webkit.org/changeset/145401>