Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions bindings/deno/bunsenite.ts → bindings/deno/bunsenite.affine
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
// SPDX-License-Identifier: MPL-2.0
// Ported via Harvard Engine mechanical processor

module bunsenite;

// TODO: Complete semantic implementation

/* === ORIGINAL TYPESCRIPT CONTEXT ===
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
// Bunsenite Deno FFI Bindings
// TypeScript bindings for Deno runtime using native FFI
Expand Down Expand Up @@ -294,3 +302,5 @@ export default {
getRSRTier,
getTPCFPerimeter,
};

==================================== */
10 changes: 10 additions & 0 deletions bindings/deno/example.ts → bindings/deno/example.affine
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
// SPDX-License-Identifier: MPL-2.0
// Ported via Harvard Engine mechanical processor

module example;

// TODO: Complete semantic implementation

/* === ORIGINAL TYPESCRIPT CONTEXT ===
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
#!/usr/bin/env deno run --allow-ffi --allow-read

Expand Down Expand Up @@ -109,3 +117,5 @@ const config6 = parseNickel(
console.log("Advanced config:", JSON.stringify(config6, null, 2));

console.log("\n✓ All examples completed successfully!");

==================================== */
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
// SPDX-License-Identifier: MPL-2.0
// Ported via Harvard Engine mechanical processor

module bunsenite.d;

// TODO: Complete semantic implementation

/* === ORIGINAL TYPESCRIPT CONTEXT ===
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
// TypeScript type definitions for bunsenite
// These types are for the Node.js/Bun FFI bindings
Expand Down Expand Up @@ -36,3 +44,5 @@ export function rsr_tier(): string;
* @returns The perimeter number (e.g., 3)
*/
export function tpcf_perimeter(): number;

==================================== */