Skip to content

Commit

Permalink
feat(developer): ldml fix call to LdmlKeyboardVisualKeyboardCompiler() 🙀
Browse files Browse the repository at this point in the history
- fix a call site

For: #9438
  • Loading branch information
srl295 committed Nov 17, 2023
1 parent 054ec28 commit b802d14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function buildLdmlKeyboardToMemory(inputFilename: string, callbacks: Compi
const builder = new kmcLdml.KMXBuilder(kmx, options.saveDebug);
const kmx_binary = builder.compile();

const vkcompiler = new kmcLdml.LdmlKeyboardVisualKeyboardCompiler();
const vkcompiler = new kmcLdml.LdmlKeyboardVisualKeyboardCompiler(callbacks);
const vk = vkcompiler.compile(source);
const writer = new KvkFileWriter();
const kvk_binary = writer.write(vk);
Expand Down

0 comments on commit b802d14

Please sign in to comment.