Skip to content

Commit

Permalink
move makePromise.js out of src/kernel/ up into src/
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Sep 9, 2019
1 parent 53b3fba commit fa5c054
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/devices/command.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Nat from '@agoric/nat';
import makePromise from '../kernel/makePromise';
import makePromise from '../makePromise';

export default function buildCommand() {
let inboundCallback;
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/kernel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { QCLASS, makeMarshal } from '@agoric/marshal';

import { makeLiveSlots } from './liveSlots';
import { makeDeviceSlots } from './deviceSlots';
import makePromise from './makePromise';
import makePromise from '../makePromise';
import makeVatManager from './vatManager';
import makeDeviceManager from './deviceManager';
import makeKernelKeeper from './state/kernelKeeper';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/basedir-promises-2/bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import harden from '@agoric/harden';
import makePromise from '../../src/kernel/makePromise';
import makePromise from '../../src/makePromise';

console.log(`loading bootstrap`);

Expand Down
2 changes: 1 addition & 1 deletion test/basedir-promises/bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import harden from '@agoric/harden';
import makePromise from '../../src/kernel/makePromise';
import makePromise from '../../src/makePromise';

console.log(`loading bootstrap`);

Expand Down
2 changes: 1 addition & 1 deletion test/message-patterns.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// test.stuff patterns.

import harden from '@agoric/harden';
import makePromise from '../src/kernel/makePromise';
import makePromise from '../src/makePromise';

// Exercise a set of increasingly complex object-capability message patterns,
// for testing.
Expand Down
2 changes: 1 addition & 1 deletion test/test-marshal.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import harden from '@agoric/harden';
import { makeMarshal, mustPassByPresence } from '@agoric/marshal';

import { makeMarshaller } from '../src/kernel/liveSlots';
import makePromise from '../src/kernel/makePromise';
import makePromise from '../src/makePromise';

import { buildVatController } from '../src/index';

Expand Down

0 comments on commit fa5c054

Please sign in to comment.