Skip to content

Commit 957917c

Browse files
committed
update copyright notices
1 parent d0d53fc commit 957917c

Some content is hidden

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

75 files changed

+146
-149
lines changed

NOTICE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Cadence-lint
2-
Copyright 2019-2022 Dapper Labs, Inc.
2+
Copyright Flow Foundation
33

4-
This product includes software developed at Dapper Labs, Inc. (https://www.dapperlabs.com/).
4+
This product includes software developed at at the Flow Foundation (https://flow.com/flow-foundation).

docgen/cmd/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence docgen - The Cadence documentation generator
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

docgen/doc_generator.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence docgen - The Cadence documentation generator
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

docgen/templates/markdown-templates.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence docgen - The Cadence documentation generator
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -27,7 +27,6 @@ import (
2727
var mdTemplateFiles embed.FS
2828

2929
// MarkdownTemplateProvider is a provider for the markdown template files.
30-
//
3130
type MarkdownTemplateProvider struct {
3231
}
3332

docgen/templates/templates.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence docgen - The Cadence documentation generator
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -21,7 +21,6 @@ package templates
2121
// TemplateProvider is a template provider interface that has to be
2222
// implemented by all the template providers of the document generator.
2323
// e.g: Markdown templates.
24-
//
2524
type TemplateProvider interface {
2625
Get(templateName string) (string, error)
2726
}

docgen/test/doc_gen_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence docgen - The Cadence documentation generator
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

docgen/wasm/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +build wasm
33

44
/*
5-
* Copyright 2019-2022 Dapper Labs, Inc.
5+
* Copyright Flow Foundation
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

languageserver/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Cadence - The resource-oriented smart contract programming language
33
#
4-
# Copyright 2019-2020 Dapper Labs, Inc.
4+
# Copyright Flow Foundation
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

languageserver/cmd/languageserver/main.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// +build !wasm
33

44
/*
5-
* Cadence - The resource-oriented smart contract programming language
5+
* Cadence languageserver - The Cadence language server
66
*
7-
* Copyright 2019-2022 Dapper Labs, Inc.
7+
* Copyright Flow Foundation
88
*
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.
@@ -22,8 +22,9 @@
2222
package main
2323

2424
import (
25-
"github.com/onflow/cadence-tools/languageserver"
2625
"github.com/spf13/pflag"
26+
27+
"github.com/onflow/cadence-tools/languageserver"
2728
)
2829

2930
var enableFlowClientFlag = pflag.Bool("enable-flow-client", true, "enable Flow client functionality")

languageserver/cmd/languageserver/main_wasm.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +build wasm
33

44
/*
5-
* Copyright 2019-2022 Dapper Labs, Inc.
5+
* Copyright Flow Foundation
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

languageserver/conversion/conversion.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/argument.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/argument_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/commands.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/commands_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/contracts.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/contracts_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/diagnostics.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/entrypoint.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/entrypoint_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/flow.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/integration.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/resolvers.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/resolvers_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/integration/state.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/jsonrpc2/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/languageserver.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// +build !wasm
33

44
/*
5-
* Cadence - The resource-oriented smart contract programming language
5+
* Cadence languageserver - The Cadence language server
66
*
7-
* Copyright 2019-2022 Dapper Labs, Inc.
7+
* Copyright Flow Foundation
88
*
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

languageserver/protocol/documentchanges.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/protocol/json.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languageserver/protocol/methods.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/protocol/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/protocol/types.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languageserver/server/command.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/server/document_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/server/linting_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/server/location.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

languageserver/server/objectstream.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Cadence - The resource-oriented smart contract programming language
2+
* Cadence languageserver - The Cadence language server
33
*
4-
* Copyright 2019-2022 Dapper Labs, Inc.
4+
* Copyright Flow Foundation
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)