Skip to content

Commit 331b549

Browse files
author
Release Action
committed
Build for 80c90fd
1 parent 80c90fd commit 331b549

File tree

128 files changed

+3393
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+3393
-0
lines changed
7.37 MB
Binary file not shown.

dist/bin/license.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2022-2024, The MathWorks, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice,
8+
this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
3. In all cases, the software is, and all modifications and derivatives of the
15+
software shall be, licensed to you solely for use in conjunction with
16+
MathWorks products and service offerings.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

dist/bin/maci64/run-matlab-command

7.28 MB
Binary file not shown.

dist/bin/thirdpartylicenses.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2013 Google. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above
10+
copyright notice, this list of conditions and the following disclaimer
11+
in the documentation and/or other materials provided with the
12+
distribution.
13+
* Neither the name of Google Inc. nor the names of its
14+
contributors may be used to endorse or promote products derived from
15+
this software without specific prior written permission.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7.49 MB
Binary file not shown.

dist/index.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
classdef CreateCoberturaAndHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2022 The MathWorks, Inc.
3+
4+
properties
5+
CoberturaFilePath = '''coverage.xml'''
6+
HTMLFolderPath = '''htmlCodeCoverage'''
7+
Source = {'pwd'}
8+
end
9+
10+
methods
11+
function set.CoberturaFilePath(obj, value)
12+
scriptgen.internal.validateTextScalar(value);
13+
obj.CoberturaFilePath = value;
14+
end
15+
16+
function set.HTMLFolderPath(obj, value)
17+
scriptgen.internal.validateTextScalar(value);
18+
obj.HTMLFolderPath = value;
19+
end
20+
21+
function set.Source(obj, value)
22+
scriptgen.internal.validateTextArray(value);
23+
obj.Source = value;
24+
end
25+
end
26+
end
27+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaAndHTMLCodePluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaAndHTMLCodePluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
classdef CreateCoberturaCodePluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''coverage.xml'''
6+
Source = {'pwd'}
7+
end
8+
9+
methods
10+
function set.FilePath(obj, value)
11+
scriptgen.internal.validateTextScalar(value);
12+
obj.FilePath = value;
13+
end
14+
15+
function set.Source(obj, value)
16+
scriptgen.internal.validateTextArray(value);
17+
obj.Source = value;
18+
end
19+
end
20+
end
21+

0 commit comments

Comments
 (0)