1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Rename sendMsgFromObject to sendMsg

This commit is contained in:
Ryan Dahl 2018-05-23 11:31:53 -04:00
parent 602ee0d5a1
commit be4883722f
3 changed files with 6 additions and 9 deletions

View file

@ -26,10 +26,7 @@ export function pub(channel: string, payload: Uint8Array): null | ArrayBuffer {
// Internal version of "pub".
// TODO add internal version of "sub"
// TODO rename to pubInternal()
export function sendMsgFromObject(
channel: string,
obj: pb.IMsg
): null | pb.Msg {
export function sendMsg(channel: string, obj: pb.IMsg): null | pb.Msg {
const msg = pb.Msg.fromObject(obj);
const ui8 = pb.Msg.encode(msg).finish();
const resBuf = pub(channel, ui8);

8
os.ts
View file

@ -1,15 +1,15 @@
import { ModuleInfo } from "./types";
import { sendMsgFromObject } from "./dispatch";
import { sendMsg } from "./dispatch";
export function exit(code = 0): void {
sendMsgFromObject("os", { exit: { code } });
sendMsg("os", { exit: { code } });
}
export function sourceCodeFetch(
moduleSpecifier: string,
containingFile: string
): ModuleInfo {
const res = sendMsgFromObject("os", {
const res = sendMsg("os", {
sourceCodeFetch: { moduleSpecifier, containingFile }
});
return res.sourceCodeFetchRes;
@ -20,7 +20,7 @@ export function sourceCodeCache(
sourceCode: string,
outputCode: string
): void {
sendMsgFromObject("os", {
sendMsg("os", {
sourceCodeCache: { filename, sourceCode, outputCode }
});
}

View file

@ -37,7 +37,7 @@ export function setTimeout(cb: TimerCallback, duration: number): number {
cb
};
timers.set(timer.id, timer);
dispatch.sendMsgFromObject("timers", {
dispatch.sendMsg("timers", {
timerStart: {
id: timer.id,
interval: false,