Skip to content

Commit

Permalink
fix: split marshal module (#2803)
Browse files Browse the repository at this point in the history
  • Loading branch information
erights authored Apr 8, 2021
1 parent cb022d6 commit 2e19e78
Show file tree
Hide file tree
Showing 7 changed files with 426 additions and 393 deletions.
10 changes: 3 additions & 7 deletions packages/marshal/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
export {
REMOTE_STYLE,
getInterfaceOf,
pureCopy,
QCLASS,
getErrorConstructor,
sameValueZero,
passStyleOf,
makeMarshal,
Remotable,
Far,
} from './src/marshal';
} from './src/passStyleOf';

export { pureCopy, QCLASS, makeMarshal, Remotable, Far } from './src/marshal';

export { stringify, parse } from './src/marshal-stringify';
3 changes: 2 additions & 1 deletion packages/marshal/src/marshal-justin.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

import { Nat } from '@agoric/nat';
import { assert, details as X, q } from '@agoric/assert';
import { QCLASS, getErrorConstructor } from './marshal';
import { getErrorConstructor } from './passStyleOf';
import { QCLASS } from './marshal';
import { makeReviverIbidTable } from './ibidTables';

import './types';
Expand Down
Loading

0 comments on commit 2e19e78

Please sign in to comment.