Skip to content

Commit

Permalink
fix: import order
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Jul 25, 2021
1 parent 2ecba81 commit 673bea9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/SwingSet/test/test-timer-device.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Far } from '@agoric/marshal';
import { test } from '../tools/prepare-test-env-ava.js';

// eslint-disable-next-line import/order
import { Far } from '@agoric/marshal';
import { makeTimerMap, curryPollFn } from '../src/devices/timer-src.js';

test('multiMap multi store', t => {
Expand Down
3 changes: 1 addition & 2 deletions packages/marshal/src/passStyleOf.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,12 +402,11 @@ harden(getInterfaceOf);
export { getInterfaceOf };

/**
* objects can only be passed in one of two/three forms:
* objects can only be passed in one of two forms:
* 1: pass-by-remote: all properties (own and inherited) are methods,
* the object itself is of type object, not function
* 2: pass-by-copy: all string-named own properties are data, not methods
* the object must inherit from objectPrototype or null
* 3: the empty object is pass-by-remote, for identity comparison
*
* all objects must be frozen
*
Expand Down

0 comments on commit 673bea9

Please sign in to comment.