To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
package comby
-
comby
-
-
comby.configuration
-
comby.interactive
-
comby.patdiff
-
comby.patdiff_kernel
-
-
comby.pipeline
-
comby.statistics
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Syntax
Defines the syntax structures for the target language (C, Go, etc.) that are significant for matching.
Defines a set of quoted syntax for strings based on one or more delimiters and associated escape chracter.
E.g., this supports single and double quotes with escape character '\' as: delimiters = [ {|"|
, |'|
]; escape_character = '\\'
}
Defines comment syntax as one of Multiline, Nested_multiline with associated left and right delimiters, or Until_newline that defines a comment prefix. associated prefix.
type t = {
user_defined_delimiters : (string * string) list;
escapable_string_literals : escapable_string_literals option;
raw_string_literals : (string * string) list;
comments : comment_kind list;
}
Defines syntax as:
user_defined_delimiters
are delimiters treated as code structures (parentheses, brackets, braces, alphabetic words) -escapable_string_literals
are escapable quoted strings
raw_string literals
are raw quoted strings that have no escape character
comments
are comment structures
val to_yojson : t -> Yojson.Safe.json
val of_yojson : Yojson.Safe.json -> (t, string) Core_kernel.Result.t
module type S = sig ... end
The module signature that defines language syntax for a matcher
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page