Skip to content

Commit

Permalink
Add dummies for missing JS REPRs
Browse files Browse the repository at this point in the history
  • Loading branch information
hoelzro committed Sep 9, 2015
1 parent c3408ef commit 5ba8312
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/vm/js/nqp-runtime/reprs.js
Expand Up @@ -446,3 +446,11 @@ P6bigint.prototype.generateBoxingMethods = function(repr, attr) {
P6bigint.prototype.allocate = basic_allocate;
P6bigint.prototype.compose = noop_compose;
exports.P6bigint = P6bigint;

function ReentrantMutex() {}

module.exports.ReentrantMutex = ReentrantMutex;

function ConditionVariable() {}

module.exports.ConditionVariable = ConditionVariable;

0 comments on commit 5ba8312

Please sign in to comment.