Status: New
Owner: [email protected]
CC: [email protected],  [email protected],  [email protected]
Labels: Type-Bug Priority-Medium

New issue 3923 by [email protected]: Computed property name trying to call a static func of the same class -> V8_Fatal
https://code.google.com/p/v8/issues/detail?id=3923

Repro case:

"use strict";

class C {
  static a() { return 'A'; }
  [C.a()]() { return 'B'; }
};

Failure:

$ out/x64.debug/d8 --harmony-computed-property-names repro.js

#
# Fatal error in ../src/lookup.cc, line 49
# Check failed: !root->IsNull().
#

==== C stack trace ===============================

 1: V8_Fatal
 2: v8::internal::LookupIterator::GetRoot() const
3: v8::internal::LookupIterator::LookupIterator(v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Name>, v8::internal::LookupIterator::Configuration) 4: v8::internal::LoadIC::Load(v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Name>)
 5: ??
6: v8::internal::LoadIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
 7: ??
Illegal instruction (core dumped)


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to