From 03925a27539d1969c6404a0d22cb817b68d85b38 Mon Sep 17 00:00:00 2001 From: parrt Date: Sun, 4 Dec 2016 11:19:27 -0800 Subject: [PATCH] add copyrights on go --- runtime/Go/antlr/atn.go | 4 ++++ runtime/Go/antlr/atn_config.go | 4 ++++ runtime/Go/antlr/atn_config_set.go | 4 ++++ runtime/Go/antlr/atn_deserialization_options.go | 4 ++++ runtime/Go/antlr/atn_deserializer.go | 4 ++++ runtime/Go/antlr/atn_simulator.go | 4 ++++ runtime/Go/antlr/atn_state.go | 4 ++++ runtime/Go/antlr/atn_type.go | 4 ++++ runtime/Go/antlr/char_stream.go | 4 ++++ runtime/Go/antlr/common_token_factory.go | 4 ++++ runtime/Go/antlr/common_token_stream.go | 4 ++++ runtime/Go/antlr/dfa.go | 4 ++++ runtime/Go/antlr/dfa_serializer.go | 4 ++++ runtime/Go/antlr/dfa_state.go | 4 ++++ runtime/Go/antlr/diagnostic_error_listener.go | 4 ++++ runtime/Go/antlr/error_listener.go | 4 ++++ runtime/Go/antlr/error_strategy.go | 4 ++++ runtime/Go/antlr/errors.go | 4 ++++ runtime/Go/antlr/file_stream.go | 4 ++++ runtime/Go/antlr/input_stream.go | 4 ++++ runtime/Go/antlr/int_stream.go | 4 ++++ runtime/Go/antlr/interval_set.go | 4 ++++ runtime/Go/antlr/lexer.go | 4 ++++ runtime/Go/antlr/lexer_action.go | 4 ++++ runtime/Go/antlr/lexer_action_executor.go | 4 ++++ runtime/Go/antlr/lexer_atn_simulator.go | 4 ++++ runtime/Go/antlr/ll1_analyzer.go | 4 ++++ runtime/Go/antlr/parser.go | 4 ++++ runtime/Go/antlr/parser_atn_simulator.go | 4 ++++ runtime/Go/antlr/parser_rule_context.go | 4 ++++ runtime/Go/antlr/prediction_context.go | 4 ++++ runtime/Go/antlr/prediction_mode.go | 4 ++++ runtime/Go/antlr/recognizer.go | 4 ++++ runtime/Go/antlr/rule_context.go | 4 ++++ runtime/Go/antlr/semantic_context.go | 4 ++++ runtime/Go/antlr/token.go | 4 ++++ runtime/Go/antlr/token_source.go | 4 ++++ runtime/Go/antlr/token_stream.go | 4 ++++ runtime/Go/antlr/trace_listener.go | 4 ++++ runtime/Go/antlr/transition.go | 4 ++++ runtime/Go/antlr/tree.go | 4 ++++ runtime/Go/antlr/trees.go | 4 ++++ runtime/Go/antlr/utils.go | 4 ++++ 43 files changed, 172 insertions(+) diff --git a/runtime/Go/antlr/atn.go b/runtime/Go/antlr/atn.go index e999ced1d..42abef5c9 100644 --- a/runtime/Go/antlr/atn.go +++ b/runtime/Go/antlr/atn.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr var ATNInvalidAltNumber int diff --git a/runtime/Go/antlr/atn_config.go b/runtime/Go/antlr/atn_config.go index 82234ca39..a73172f18 100644 --- a/runtime/Go/antlr/atn_config.go +++ b/runtime/Go/antlr/atn_config.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/atn_config_set.go b/runtime/Go/antlr/atn_config_set.go index 83f201d27..eeb6e4c61 100644 --- a/runtime/Go/antlr/atn_config_set.go +++ b/runtime/Go/antlr/atn_config_set.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "fmt" diff --git a/runtime/Go/antlr/atn_deserialization_options.go b/runtime/Go/antlr/atn_deserialization_options.go index 739cc3939..26c352274 100644 --- a/runtime/Go/antlr/atn_deserialization_options.go +++ b/runtime/Go/antlr/atn_deserialization_options.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr var ATNDeserializationOptionsdefaultOptions = &ATNDeserializationOptions{true, false, false} diff --git a/runtime/Go/antlr/atn_deserializer.go b/runtime/Go/antlr/atn_deserializer.go index 1b9f9bd72..c03719abc 100644 --- a/runtime/Go/antlr/atn_deserializer.go +++ b/runtime/Go/antlr/atn_deserializer.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/atn_simulator.go b/runtime/Go/antlr/atn_simulator.go index 5ee91dc57..09f3a795c 100644 --- a/runtime/Go/antlr/atn_simulator.go +++ b/runtime/Go/antlr/atn_simulator.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr var ATNSimulatorError = NewDFAState(0x7FFFFFFF, NewBaseATNConfigSet(false)) diff --git a/runtime/Go/antlr/atn_state.go b/runtime/Go/antlr/atn_state.go index 6e3d512ae..d4e513780 100644 --- a/runtime/Go/antlr/atn_state.go +++ b/runtime/Go/antlr/atn_state.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "strconv" diff --git a/runtime/Go/antlr/atn_type.go b/runtime/Go/antlr/atn_type.go index 24ab80c44..a770897ac 100644 --- a/runtime/Go/antlr/atn_type.go +++ b/runtime/Go/antlr/atn_type.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // Represent the type of recognizer an ATN applies to. diff --git a/runtime/Go/antlr/char_stream.go b/runtime/Go/antlr/char_stream.go index c89cdc1e1..76d8f1f9d 100644 --- a/runtime/Go/antlr/char_stream.go +++ b/runtime/Go/antlr/char_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type CharStream interface { diff --git a/runtime/Go/antlr/common_token_factory.go b/runtime/Go/antlr/common_token_factory.go index a31d4ef5f..c1125abf5 100644 --- a/runtime/Go/antlr/common_token_factory.go +++ b/runtime/Go/antlr/common_token_factory.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // TokenFactory creates CommonToken objects. diff --git a/runtime/Go/antlr/common_token_stream.go b/runtime/Go/antlr/common_token_stream.go index 819086ad7..7e29ef5ac 100644 --- a/runtime/Go/antlr/common_token_stream.go +++ b/runtime/Go/antlr/common_token_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/dfa.go b/runtime/Go/antlr/dfa.go index 0fdeb40a7..acfc7781f 100644 --- a/runtime/Go/antlr/dfa.go +++ b/runtime/Go/antlr/dfa.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "sort" diff --git a/runtime/Go/antlr/dfa_serializer.go b/runtime/Go/antlr/dfa_serializer.go index 25a90ad4a..5b515ba22 100644 --- a/runtime/Go/antlr/dfa_serializer.go +++ b/runtime/Go/antlr/dfa_serializer.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/dfa_state.go b/runtime/Go/antlr/dfa_state.go index 788ee4e2c..0d45edf4b 100644 --- a/runtime/Go/antlr/dfa_state.go +++ b/runtime/Go/antlr/dfa_state.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/diagnostic_error_listener.go b/runtime/Go/antlr/diagnostic_error_listener.go index e91054187..e727bba83 100644 --- a/runtime/Go/antlr/diagnostic_error_listener.go +++ b/runtime/Go/antlr/diagnostic_error_listener.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/error_listener.go b/runtime/Go/antlr/error_listener.go index afac2bc90..93be0cbfe 100644 --- a/runtime/Go/antlr/error_listener.go +++ b/runtime/Go/antlr/error_listener.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/error_strategy.go b/runtime/Go/antlr/error_strategy.go index 1486a3481..ddabdbb7a 100644 --- a/runtime/Go/antlr/error_strategy.go +++ b/runtime/Go/antlr/error_strategy.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/errors.go b/runtime/Go/antlr/errors.go index ab6f331da..74e42ed39 100644 --- a/runtime/Go/antlr/errors.go +++ b/runtime/Go/antlr/errors.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // The root of the ANTLR exception hierarchy. In general, ANTLR tracks just diff --git a/runtime/Go/antlr/file_stream.go b/runtime/Go/antlr/file_stream.go index 842484cec..b576b5f5f 100644 --- a/runtime/Go/antlr/file_stream.go +++ b/runtime/Go/antlr/file_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/input_stream.go b/runtime/Go/antlr/input_stream.go index fc17e4d03..dfbe3a99c 100644 --- a/runtime/Go/antlr/input_stream.go +++ b/runtime/Go/antlr/input_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type InputStream struct { diff --git a/runtime/Go/antlr/int_stream.go b/runtime/Go/antlr/int_stream.go index 283f4dbd6..010f9f22c 100644 --- a/runtime/Go/antlr/int_stream.go +++ b/runtime/Go/antlr/int_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type IntStream interface { diff --git a/runtime/Go/antlr/interval_set.go b/runtime/Go/antlr/interval_set.go index 6d4639021..f0179d968 100644 --- a/runtime/Go/antlr/interval_set.go +++ b/runtime/Go/antlr/interval_set.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/lexer.go b/runtime/Go/antlr/lexer.go index d22671dfc..7b5807789 100644 --- a/runtime/Go/antlr/lexer.go +++ b/runtime/Go/antlr/lexer.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/lexer_action.go b/runtime/Go/antlr/lexer_action.go index 7849b58ec..e1458715e 100644 --- a/runtime/Go/antlr/lexer_action.go +++ b/runtime/Go/antlr/lexer_action.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "strconv" diff --git a/runtime/Go/antlr/lexer_action_executor.go b/runtime/Go/antlr/lexer_action_executor.go index bb5ef924d..da77019e7 100644 --- a/runtime/Go/antlr/lexer_action_executor.go +++ b/runtime/Go/antlr/lexer_action_executor.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // Represents an executor for a sequence of lexer actions which traversed during diff --git a/runtime/Go/antlr/lexer_atn_simulator.go b/runtime/Go/antlr/lexer_atn_simulator.go index 9ed47595e..42108ff17 100644 --- a/runtime/Go/antlr/lexer_atn_simulator.go +++ b/runtime/Go/antlr/lexer_atn_simulator.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/ll1_analyzer.go b/runtime/Go/antlr/ll1_analyzer.go index 2f11ad3c4..8edd98999 100644 --- a/runtime/Go/antlr/ll1_analyzer.go +++ b/runtime/Go/antlr/ll1_analyzer.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type LL1Analyzer struct { diff --git a/runtime/Go/antlr/parser.go b/runtime/Go/antlr/parser.go index 7ec5b0d27..30b16b6c8 100644 --- a/runtime/Go/antlr/parser.go +++ b/runtime/Go/antlr/parser.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/parser_atn_simulator.go b/runtime/Go/antlr/parser_atn_simulator.go index bad826efd..a0d471fcb 100644 --- a/runtime/Go/antlr/parser_atn_simulator.go +++ b/runtime/Go/antlr/parser_atn_simulator.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/parser_rule_context.go b/runtime/Go/antlr/parser_rule_context.go index 163c6971e..b2ef011ed 100644 --- a/runtime/Go/antlr/parser_rule_context.go +++ b/runtime/Go/antlr/parser_rule_context.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/prediction_context.go b/runtime/Go/antlr/prediction_context.go index 18ba91adc..318256916 100644 --- a/runtime/Go/antlr/prediction_context.go +++ b/runtime/Go/antlr/prediction_context.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/prediction_mode.go b/runtime/Go/antlr/prediction_mode.go index 722184fc7..b9a4f3529 100644 --- a/runtime/Go/antlr/prediction_mode.go +++ b/runtime/Go/antlr/prediction_mode.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/recognizer.go b/runtime/Go/antlr/recognizer.go index e9dec3931..b6a295825 100644 --- a/runtime/Go/antlr/recognizer.go +++ b/runtime/Go/antlr/recognizer.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/rule_context.go b/runtime/Go/antlr/rule_context.go index 254be29cd..e21522cbc 100644 --- a/runtime/Go/antlr/rule_context.go +++ b/runtime/Go/antlr/rule_context.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // A rule context is a record of a single rule invocation. It knows diff --git a/runtime/Go/antlr/semantic_context.go b/runtime/Go/antlr/semantic_context.go index 4a23dfa3c..a5afd42a0 100644 --- a/runtime/Go/antlr/semantic_context.go +++ b/runtime/Go/antlr/semantic_context.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/token.go b/runtime/Go/antlr/token.go index c3590cbe4..01696e4f4 100644 --- a/runtime/Go/antlr/token.go +++ b/runtime/Go/antlr/token.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/token_source.go b/runtime/Go/antlr/token_source.go index a08280d57..a7cf38f7b 100644 --- a/runtime/Go/antlr/token_source.go +++ b/runtime/Go/antlr/token_source.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type TokenSource interface { diff --git a/runtime/Go/antlr/token_stream.go b/runtime/Go/antlr/token_stream.go index 453433e74..49e4a565f 100644 --- a/runtime/Go/antlr/token_stream.go +++ b/runtime/Go/antlr/token_stream.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr type TokenStream interface { diff --git a/runtime/Go/antlr/trace_listener.go b/runtime/Go/antlr/trace_listener.go index ed6d4fecd..a621615e5 100644 --- a/runtime/Go/antlr/trace_listener.go +++ b/runtime/Go/antlr/trace_listener.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "fmt" diff --git a/runtime/Go/antlr/transition.go b/runtime/Go/antlr/transition.go index fdb46b1fc..68958ce84 100644 --- a/runtime/Go/antlr/transition.go +++ b/runtime/Go/antlr/transition.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import ( diff --git a/runtime/Go/antlr/tree.go b/runtime/Go/antlr/tree.go index 0a282d5dc..fb9aa70b3 100644 --- a/runtime/Go/antlr/tree.go +++ b/runtime/Go/antlr/tree.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr // The basic notion of a tree has a parent, a payload, and a list of children. diff --git a/runtime/Go/antlr/trees.go b/runtime/Go/antlr/trees.go index 4070fb97c..32a89f519 100644 --- a/runtime/Go/antlr/trees.go +++ b/runtime/Go/antlr/trees.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import "fmt" diff --git a/runtime/Go/antlr/utils.go b/runtime/Go/antlr/utils.go index 320669a56..2219128f9 100644 --- a/runtime/Go/antlr/utils.go +++ b/runtime/Go/antlr/utils.go @@ -1,3 +1,7 @@ +/* Copyright (c) 2012 The ANTLR Project Contributors. All rights reserved. + * Use is of this file is governed by the BSD 3-clause license that + * can be found in the LICENSE.txt file in the project root. + */ package antlr import (