From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5131 invoked by alias); 3 Jan 2012 17:38:44 -0000 Received: (qmail 5027 invoked by uid 22791); 3 Jan 2012 17:38:43 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail-vx0-f169.google.com (HELO mail-vx0-f169.google.com) (209.85.220.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 03 Jan 2012 17:38:30 +0000 Received: by vcge1 with SMTP id e1so14209905vcg.0 for ; Tue, 03 Jan 2012 09:38:29 -0800 (PST) Received: by 10.52.35.69 with SMTP id f5mr13260870vdj.29.1325612309784; Tue, 03 Jan 2012 09:38:29 -0800 (PST) MIME-Version: 1.0 Received: by 10.52.35.69 with SMTP id f5mr13260853vdj.29.1325612309659; Tue, 03 Jan 2012 09:38:29 -0800 (PST) Received: by 10.220.192.204 with HTTP; Tue, 3 Jan 2012 09:38:29 -0800 (PST) In-Reply-To: <20111229041111.GR23376@adacore.com> References: <20111228210206.B6B762461C9@ruffy.mtv.corp.google.com> <20111229041111.GR23376@adacore.com> Date: Tue, 03 Jan 2012 17:38:00 -0000 Message-ID: Subject: Re: [RFC] Initial pass at supporting the Go language From: Doug Evans To: Joel Brobecker Cc: gdb-patches@sourceware.org, iant@google.com X-System-Of-Record: true Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-01/txt/msg00101.txt.bz2 On Wed, Dec 28, 2011 at 8:11 PM, Joel Brobecker wrote: >> This patch is a first pass at supporting the Go language. >> There's still lots to do, but this is a start. > > From the comments, I can see that you have a feature > that is similar to what we have in Ada, namely to be able to > use the unqualified name of an entity. For instance, if you have > a variable foo in package bar, you want to be able to write > either, you want to be able to use either "print bar" or > "print foo.bar". That's the intent.