Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • dan0196/ligo
  • ligolang/ligo
  • maht0rz/ligo
  • JD-P/ligo
  • governancy/ligo
  • renovatorruler/ligo
  • dailambda/ligo
  • jevonearth/ligo
  • mbykovskyy_ecadlabs/ligo
  • opt9/ligo
  • arvidnl/ligo
  • jpic/ligo
  • juztin/ligo
  • steakandbake/ligo
  • mark-o-robson/ligo
  • simon138/ligo
  • nmangan/ligo
  • edmondlee/ligo
  • technomad21c/ligo
  • diogo.machado/ligo
  • kkirka/ligo
  • nobrakal/ligo
  • roxane3/ligo
  • GImbrailo/ligo
  • syuhei176/ligo
  • mjgajda/ligo
  • sanityinc/ligo
  • molllyn1/ligo
  • ulrikstrid/ligo
  • prometheansacrifice/ligo
  • nicolas.van.phan/ligo
  • ryujh21h/ligo
  • rishabhkeshan/ligo
  • amitcz/ligo
  • jobjo/ligo
  • deryyy/ligo
  • my8bit/ligo
  • daachi/ligo
  • elmorg/ligo
  • a.kumar4/ligo
  • dheavy/ligo
  • konchunas/ligo
  • ggichuru.dev/ligo
  • steven_j/ligo
  • arguiot/ligo
  • digitea00/ligo
  • melwyn95/ligo
  • chrispinnock/ligo
  • clarus1/ligo
  • patrickferris/ligo
  • caaatisgood/ligo
  • karoshibee/ligo-kbee
  • arguil/ligo
  • benjamin.fuentes/ligo
  • Dayveed117/ligo
  • timothymcmackin/ligo
  • shubham-kumar/ligo
  • bfamchon1/ligo
  • mavryk-network/ligo
  • int-index/ligo
60 results
Select Git revision
Show changes
let check_hash_key = (kh1_k2: (key_hash, key))
: (bool, key_hash) => {
let (kh1, k2) = kh1_k2;
let kh1, k2 = kh1_k2;
let kh2: key_hash = Crypto.hash_key(k2);
((kh1 == kh2), kh2)
};
let ((x: int), (y: int)) = (1, 2);
let (x: int), (y: int) = (1, 2);
let main = (p: unit): int => x + y;
let ((x: int), (y: int)) = (3, 3);
let (x: int), (y: int) = (3, 3);
let main_paren = (p: unit): int => x + y;
let foobar: (int, int) = (23, 42);
let ((foo: int), (bar: int)) = foobar;
let (foo: int), (bar: int) = foobar;
let non_tuple_rhs = (p: unit): int => foo + bar;
......@@ -30,3 +30,8 @@ let letin_nesting2 = (x: int) => {
let z = 3;
x + y + z
};
let x = {
let _, (x, _) = (1n, (2n, 3n));
x
};
......@@ -43,7 +43,7 @@ let check_message = ((param, s): (check_message_pt, storage))
let keys: authorized_keys = s.auth;
let aux = ((vk, pkh_sig): ((nat, authorized_keys),
(key_hash, signature))): (nat, authorized_keys) => {
let (valid, keys) = vk;
let valid, keys = vk;
switch(keys) {
| [] => vk
| [key, ...keys] =>
......@@ -62,7 +62,7 @@ let check_message = ((param, s): (check_message_pt, storage))
}
}
};
let (valid, keys) =
let valid, keys =
List.fold(aux, param.signatures, (valid, keys));
if (valid < s.threshold) {
......
......@@ -26,4 +26,8 @@ let letin_nesting (_: unit) =
let letin_nesting2 (x: int) =
let y = 2 in
let z = 3 in
x + y + z
\ No newline at end of file
x + y + z
let x =
let (_, (x, _)) = (1n, (2n, 3n)) in
x
......@@ -27,4 +27,9 @@ let letin_nesting2 = (x: int) => {
let y = 2;
let z = 3;
x + y + z
}
\ No newline at end of file
}
let x = {
let (_, (x, _)) = (1n, (2n, 3n));
x
}
......@@ -7,7 +7,7 @@ import { logger } from './logger';
const { spawn } = require('child_process');
const dataDir = process.env['DATA_DIR'] || path.join(__dirname, 'tmp');
const JOB_TIMEOUT = 10000;
const JOB_TIMEOUT = 50000;
export class CompilerError extends Error {
constructor(message: string) {
......
......@@ -31,6 +31,10 @@ let find key map =
let find_opt key map =
try Some (find key map) with Not_found -> None
let find_default key make_default_v map =
try find key map, map with
Not_found -> let v = make_default_v () in v, add key v map
let has_key key map =
match find_opt key map with
Some _ -> true
......
......@@ -57,6 +57,13 @@ val find : 'key -> ('key, 'value) t -> 'value
val find_opt : 'key -> ('key, 'value) t -> 'value option
(* The value of the call [find_default key make_default_v map] is
[value] if the key [key] is bound to [value] in the map [map], and
[make_default_v ()] otherwise. In the first case, the
[make_default_v] function is not executed *)
val find_default : 'key -> (unit -> 'value) -> ('key, 'value) map -> 'value * ('key, 'value) map
(* The value of the call [find_opt key map] is [true] if the key
[key] is bound to some value in the map [map], and [None]
otherwise. *)
......