This file is indexed.

/usr/share/yelp-xsl/js/jquery.syntax.brush.ocaml.js is in yelp-xsl 3.10.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// brush: "ocaml" aliases: ["ml", "sml", "fsharp"]

//	This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
//	Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
//	See <jquery.syntax.js> for licensing details.

// This brush is based loosely on the following documentation:
// http://msdn.microsoft.com/en-us/library/dd233230.aspx

Syntax.register('ocaml', function(brush) {
	var keywords = ["abstract", "and", "as", "assert", "begin", "class", "default", "delegate", "do", "done", "downcast", "downto", "elif", "else", "end", "exception", "extern", "finally", "for", "fun", "function", "if", "in", "inherit", "inline", "interface", "internal", "lazy", "let", "match", "member", "module", "mutable", "namespace", "new", "null", "of", "open", "or", "override", "rec", "return", "static", "struct", "then", "to", "try", "type", "upcast", "use", "val", "when", "while", "with", "yield", "asr", "land", "lor", "lsl", "lsr", "lxor", "mod", "sig", "atomic", "break", "checked", "component", "const", "constraint", "constructor", "continue", "eager", "event", "external", "fixed", "functor", "global", "include", "method", "mixin", "object", "parallel", "process", "protected", "pure", "sealed", "trait", "virtual", "volatile", "val"];
	
	var types = ["bool", "byte", "sbyte", /\bu?int\d*\b/g, "nativeint", "unativeint", "char", "string", "decimal", "unit", "void", "float32", "single", "float64", "double", "list", "array", "exn", "format", "fun", "option", "ref"];
	
	var operators = ["!", "<>", "%", "&", "*", "+", "-", "->", "/", "::", ":=", ":>", ":?", ":?>", "<", "=", ">", "?", "@", "^", "_", "`", "|", "~", "'", "[<", ">]", "<|", "|>", "[|", "|]", "(|", "|)", "(*", "*)", "in"];
	
	var values = ["true", "false"];
	
	var access = ["private", "public"];
	
	brush.push(access, {klass: 'access'});
	brush.push(values, {klass: 'constant'});
	brush.push(types, {klass: 'type'});
	brush.push(keywords, {klass: 'keyword'});
	brush.push(operators, {klass: 'operator'});
	
	// http://caml.inria.fr/pub/docs/manual-ocaml/manual011.html#module-path
	// open [module-path], new [type]
	brush.push({
		pattern: /(?:open|new)\s+((?:\.?[a-z][a-z0-9]*)+)/gi,
		matches: Syntax.extractMatches({klass: 'type'})
	});
	
	// Functions
	brush.push({
		pattern: /(?:\.)([a-z_][a-z0-9_]+)/gi,
		matches: Syntax.extractMatches({klass: 'function'})
	});
	
	// Avoid highlighting keyword arguments as camel-case types.
	brush.push({
		pattern: /(?:\(|,)\s*(\w+\s*=)/g,
		matches: Syntax.extractMatches({
			klass: 'keyword-argument'
		})
	});
	
	// We need to modify cStyleFunction because "(*" is a comment token.
	brush.push({
		pattern: /([a-z_][a-z0-9_]*)\s*\((?!\*)/gi,
		matches: Syntax.extractMatches({klass: 'function'})
	});
	
	// Types
	brush.push(Syntax.lib.camelCaseType);
	
	// Web Links
	brush.push(Syntax.lib.webLink);
	
	// Comments
	brush.push({
		pattern: /\(\*[\s\S]*?\*\)/g,
		klass: 'comment'
	});
	
	// Strings
	brush.push(Syntax.lib.doubleQuotedString);
	brush.push(Syntax.lib.stringEscape);
	
	// Numbers
	brush.push(Syntax.lib.decimalNumber);
	brush.push(Syntax.lib.hexNumber);
});