source: src/SynTree/Visitor.cc@ 800d275

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 800d275 was 6b224a52, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

  • Property mode set to 100644
File size: 14.9 KB
RevLine 
[0dd3a2f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[71f4e4f]7// Visitor.cc --
[0dd3a2f]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
[6d49ea3]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 17 15:39:38 2017
13// Update Count : 29
[0dd3a2f]14//
15
[ea6332d]16#include <cassert> // for assert
17#include <list> // for list
18
19#include "Constant.h" // for Constant
20#include "Declaration.h" // for DeclarationWithType, ObjectDecl, Declaration
21#include "Expression.h" // for Expression, ConstantExpr, ImplicitCopyCtorExpr
22#include "Initializer.h" // for Initializer, Designation, ConstructorInit
23#include "Statement.h" // for Statement, CatchStmt, AsmStmt, CompoundStmt
24#include "Type.h" // for Type, Type::ForallList, AttrType, FunctionType
[51b73452]25#include "Visitor.h"
[ea6332d]26
27class Subrange;
[51b73452]28
[d9a0e76]29Visitor::Visitor() {}
[51b73452]30
[d9a0e76]31Visitor::~Visitor() {}
[51b73452]32
[0dd3a2f]33void Visitor::visit( ObjectDecl *objectDecl ) {
34 maybeAccept( objectDecl->get_type(), *this );
35 maybeAccept( objectDecl->get_init(), *this );
36 maybeAccept( objectDecl->get_bitfieldWidth(), *this );
[51b73452]37}
38
[0dd3a2f]39void Visitor::visit( FunctionDecl *functionDecl ) {
40 maybeAccept( functionDecl->get_functionType(), *this );
41 maybeAccept( functionDecl->get_statements(), *this );
[51b73452]42}
43
[1e1e15b]44void Visitor::handleAggregateDecl( AggregateDecl *aggregateDecl ) {
[0dd3a2f]45 acceptAll( aggregateDecl->get_parameters(), *this );
46 acceptAll( aggregateDecl->get_members(), *this );
[51b73452]47}
48
[0dd3a2f]49void Visitor::visit( StructDecl *aggregateDecl ) {
[1e1e15b]50 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b73452]51}
52
[0dd3a2f]53void Visitor::visit( UnionDecl *aggregateDecl ) {
[1e1e15b]54 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b73452]55}
56
[0dd3a2f]57void Visitor::visit( EnumDecl *aggregateDecl ) {
[1e1e15b]58 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b73452]59}
60
[4040425]61void Visitor::visit( TraitDecl *aggregateDecl ) {
[1e1e15b]62 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b73452]63}
64
[1e1e15b]65void Visitor::handleNamedTypeDecl( NamedTypeDecl *typeDecl ) {
[0dd3a2f]66 acceptAll( typeDecl->get_parameters(), *this );
67 acceptAll( typeDecl->get_assertions(), *this );
68 maybeAccept( typeDecl->get_base(), *this );
[51b73452]69}
70
[0dd3a2f]71void Visitor::visit( TypeDecl *typeDecl ) {
[1e1e15b]72 handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
[67cf18c]73 maybeAccept( typeDecl->get_init(), *this );
[51b73452]74}
75
[0dd3a2f]76void Visitor::visit( TypedefDecl *typeDecl ) {
[1e1e15b]77 handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
[51b73452]78}
79
[e994912]80void Visitor::visit( AsmDecl *asmDecl ) {
81 maybeAccept( asmDecl->get_stmt(), *this );
82}
83
84
[0dd3a2f]85void Visitor::visit( CompoundStmt *compoundStmt ) {
86 acceptAll( compoundStmt->get_kids(), *this );
[51b73452]87}
88
[0dd3a2f]89void Visitor::visit( ExprStmt *exprStmt ) {
90 maybeAccept( exprStmt->get_expr(), *this );
[51b73452]91}
92
[7f5566b]93void Visitor::visit( AsmStmt *asmStmt ) {
94 maybeAccept( asmStmt->get_instruction(), *this );
95 acceptAll( asmStmt->get_output(), *this );
96 acceptAll( asmStmt->get_input(), *this );
97 acceptAll( asmStmt->get_clobber(), *this );
98}
99
[0dd3a2f]100void Visitor::visit( IfStmt *ifStmt ) {
[6d49ea3]101 acceptAll( ifStmt->get_initialization(), *this );
[0dd3a2f]102 maybeAccept( ifStmt->get_condition(), *this );
103 maybeAccept( ifStmt->get_thenPart(), *this );
104 maybeAccept( ifStmt->get_elsePart(), *this );
[51b73452]105}
106
[0dd3a2f]107void Visitor::visit( WhileStmt *whileStmt ) {
108 maybeAccept( whileStmt->get_condition(), *this );
109 maybeAccept( whileStmt->get_body(), *this );
[51b73452]110}
111
[0dd3a2f]112void Visitor::visit( ForStmt *forStmt ) {
[145f1fc]113 acceptAll( forStmt->get_initialization(), *this );
[0dd3a2f]114 maybeAccept( forStmt->get_condition(), *this );
115 maybeAccept( forStmt->get_increment(), *this );
116 maybeAccept( forStmt->get_body(), *this );
[51b73452]117}
118
[0dd3a2f]119void Visitor::visit( SwitchStmt *switchStmt ) {
120 maybeAccept( switchStmt->get_condition(), *this );
[8688ce1]121 acceptAll( switchStmt->get_statements(), *this );
[51b73452]122}
123
[0dd3a2f]124void Visitor::visit( CaseStmt *caseStmt ) {
125 maybeAccept( caseStmt->get_condition(), *this );
126 acceptAll( caseStmt->get_statements(), *this );
[51b73452]127}
128
[b3c36f4]129void Visitor::visit( __attribute__((unused)) BranchStmt *branchStmt ) {
[51b73452]130}
131
[0dd3a2f]132void Visitor::visit( ReturnStmt *returnStmt ) {
133 maybeAccept( returnStmt->get_expr(), *this );
[51b73452]134}
135
[daf1af8]136void Visitor::visit( ThrowStmt * throwStmt ) {
137 maybeAccept( throwStmt->get_expr(), *this );
138 maybeAccept( throwStmt->get_target(), *this );
139}
140
[0dd3a2f]141void Visitor::visit( TryStmt *tryStmt ) {
142 maybeAccept( tryStmt->get_block(), *this );
143 acceptAll( tryStmt->get_catchers(), *this );
[25a8631]144 maybeAccept( tryStmt->get_finally(), *this );
[51b73452]145}
146
[0dd3a2f]147void Visitor::visit( CatchStmt *catchStmt ) {
148 maybeAccept( catchStmt->get_decl(), *this );
[25a8631]149 maybeAccept( catchStmt->get_cond(), *this );
[0dd3a2f]150 maybeAccept( catchStmt->get_body(), *this );
[51b73452]151}
152
[0dd3a2f]153void Visitor::visit( FinallyStmt *finalStmt ) {
154 maybeAccept( finalStmt->get_block(), *this );
[51b73452]155}
156
[135b431]157void Visitor::visit( WaitForStmt *waitforStmt ) {
158 for( auto & clause : waitforStmt->clauses ) {
159 maybeAccept( clause.target.function, *this );
160 acceptAll( clause.target.arguments, *this );
161
162 maybeAccept( clause.statement, *this );
163 maybeAccept( clause.condition, *this );
164 }
165
166 maybeAccept( waitforStmt->timeout.time, *this );
167 maybeAccept( waitforStmt->timeout.statement, *this );
168 maybeAccept( waitforStmt->timeout.condition, *this );
169 maybeAccept( waitforStmt->orelse.statement, *this );
170 maybeAccept( waitforStmt->orelse.condition, *this );
171}
172
[b3c36f4]173void Visitor::visit( __attribute__((unused)) NullStmt *nullStmt ) {
[51b73452]174}
175
[0dd3a2f]176void Visitor::visit( DeclStmt *declStmt ) {
177 maybeAccept( declStmt->get_decl(), *this );
[51b73452]178}
179
[f1b1e4c]180void Visitor::visit( ImplicitCtorDtorStmt *impCtorDtorStmt ) {
181 maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
182}
183
[e994912]184
[0dd3a2f]185void Visitor::visit( ApplicationExpr *applicationExpr ) {
[906e24d]186 maybeAccept( applicationExpr->get_result(), *this );
[0dd3a2f]187 maybeAccept( applicationExpr->get_function(), *this );
188 acceptAll( applicationExpr->get_args(), *this );
[51b73452]189}
190
[0dd3a2f]191void Visitor::visit( UntypedExpr *untypedExpr ) {
[906e24d]192 maybeAccept( untypedExpr->get_result(), *this );
[0dd3a2f]193 acceptAll( untypedExpr->get_args(), *this );
[51b73452]194}
195
[0dd3a2f]196void Visitor::visit( NameExpr *nameExpr ) {
[906e24d]197 maybeAccept( nameExpr->get_result(), *this );
[51b73452]198}
199
[0dd3a2f]200void Visitor::visit( AddressExpr *addressExpr ) {
[906e24d]201 maybeAccept( addressExpr->get_result(), *this );
[0dd3a2f]202 maybeAccept( addressExpr->get_arg(), *this );
[51b73452]203}
204
[0dd3a2f]205void Visitor::visit( LabelAddressExpr *labAddressExpr ) {
[906e24d]206 maybeAccept( labAddressExpr->get_result(), *this );
[0dd3a2f]207 maybeAccept( labAddressExpr->get_arg(), *this );
[51b73452]208}
209
[0dd3a2f]210void Visitor::visit( CastExpr *castExpr ) {
[906e24d]211 maybeAccept( castExpr->get_result(), *this );
[0dd3a2f]212 maybeAccept( castExpr->get_arg(), *this );
[51b73452]213}
214
[a5f0529]215void Visitor::visit( VirtualCastExpr *castExpr ) {
216 maybeAccept( castExpr->get_result(), *this );
217 maybeAccept( castExpr->get_arg(), *this );
218}
219
[0dd3a2f]220void Visitor::visit( UntypedMemberExpr *memberExpr ) {
[906e24d]221 maybeAccept( memberExpr->get_result(), *this );
[0dd3a2f]222 maybeAccept( memberExpr->get_aggregate(), *this );
[3b58d91]223 maybeAccept( memberExpr->get_member(), *this );
[51b73452]224}
225
[0dd3a2f]226void Visitor::visit( MemberExpr *memberExpr ) {
[906e24d]227 maybeAccept( memberExpr->get_result(), *this );
[0dd3a2f]228 maybeAccept( memberExpr->get_aggregate(), *this );
[51b73452]229}
230
[0dd3a2f]231void Visitor::visit( VariableExpr *variableExpr ) {
[906e24d]232 maybeAccept( variableExpr->get_result(), *this );
[51b73452]233}
234
[0dd3a2f]235void Visitor::visit( ConstantExpr *constantExpr ) {
[906e24d]236 maybeAccept( constantExpr->get_result(), *this );
[0dd3a2f]237 maybeAccept( constantExpr->get_constant(), *this );
[51b73452]238}
239
[0dd3a2f]240void Visitor::visit( SizeofExpr *sizeofExpr ) {
[906e24d]241 maybeAccept( sizeofExpr->get_result(), *this );
[0dd3a2f]242 if ( sizeofExpr->get_isType() ) {
243 maybeAccept( sizeofExpr->get_type(), *this );
244 } else {
245 maybeAccept( sizeofExpr->get_expr(), *this );
246 }
[51b73452]247}
248
[47534159]249void Visitor::visit( AlignofExpr *alignofExpr ) {
[906e24d]250 maybeAccept( alignofExpr->get_result(), *this );
[47534159]251 if ( alignofExpr->get_isType() ) {
252 maybeAccept( alignofExpr->get_type(), *this );
253 } else {
254 maybeAccept( alignofExpr->get_expr(), *this );
255 }
256}
257
[2a4b088]258void Visitor::visit( UntypedOffsetofExpr *offsetofExpr ) {
[906e24d]259 maybeAccept( offsetofExpr->get_result(), *this );
[2a4b088]260 maybeAccept( offsetofExpr->get_type(), *this );
261}
262
[25a054f]263void Visitor::visit( OffsetofExpr *offsetofExpr ) {
[906e24d]264 maybeAccept( offsetofExpr->get_result(), *this );
[25a054f]265 maybeAccept( offsetofExpr->get_type(), *this );
266 maybeAccept( offsetofExpr->get_member(), *this );
267}
268
[afc1045]269void Visitor::visit( OffsetPackExpr *offsetPackExpr ) {
[906e24d]270 maybeAccept( offsetPackExpr->get_result(), *this );
[afc1045]271 maybeAccept( offsetPackExpr->get_type(), *this );
272}
273
[0dd3a2f]274void Visitor::visit( AttrExpr *attrExpr ) {
[906e24d]275 maybeAccept( attrExpr->get_result(), *this );
[0dd3a2f]276 if ( attrExpr->get_isType() ) {
277 maybeAccept( attrExpr->get_type(), *this );
278 } else {
279 maybeAccept( attrExpr->get_expr(), *this );
280 }
[51b73452]281}
282
[0dd3a2f]283void Visitor::visit( LogicalExpr *logicalExpr ) {
[906e24d]284 maybeAccept( logicalExpr->get_result(), *this );
[0dd3a2f]285 maybeAccept( logicalExpr->get_arg1(), *this );
286 maybeAccept( logicalExpr->get_arg2(), *this );
[51b73452]287}
288
[0dd3a2f]289void Visitor::visit( ConditionalExpr *conditionalExpr ) {
[906e24d]290 maybeAccept( conditionalExpr->get_result(), *this );
[0dd3a2f]291 maybeAccept( conditionalExpr->get_arg1(), *this );
292 maybeAccept( conditionalExpr->get_arg2(), *this );
293 maybeAccept( conditionalExpr->get_arg3(), *this );
[51b73452]294}
295
[0dd3a2f]296void Visitor::visit( CommaExpr *commaExpr ) {
[906e24d]297 maybeAccept( commaExpr->get_result(), *this );
[0dd3a2f]298 maybeAccept( commaExpr->get_arg1(), *this );
299 maybeAccept( commaExpr->get_arg2(), *this );
[51b73452]300}
301
[0dd3a2f]302void Visitor::visit( TypeExpr *typeExpr ) {
[906e24d]303 maybeAccept( typeExpr->get_result(), *this );
[0dd3a2f]304 maybeAccept( typeExpr->get_type(), *this );
[51b73452]305}
306
[7f5566b]307void Visitor::visit( AsmExpr *asmExpr ) {
308 maybeAccept( asmExpr->get_inout(), *this );
309 maybeAccept( asmExpr->get_constraint(), *this );
310 maybeAccept( asmExpr->get_operand(), *this );
311}
312
[db4ecc5]313void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
[907eccb]314 maybeAccept( impCpCtorExpr->get_result(), *this );
[db4ecc5]315 maybeAccept( impCpCtorExpr->get_callExpr(), *this );
316 acceptAll( impCpCtorExpr->get_tempDecls(), *this );
[dc2e7e0]317 acceptAll( impCpCtorExpr->get_returnDecls(), *this );
[d5556a3]318 acceptAll( impCpCtorExpr->get_dtors(), *this );
[db4ecc5]319}
320
[b6fe7e6]321void Visitor::visit( ConstructorExpr * ctorExpr ) {
[906e24d]322 maybeAccept( ctorExpr->get_result(), *this );
[b6fe7e6]323 maybeAccept( ctorExpr->get_callExpr(), *this );
[51b73452]324}
325
[630a82a]326void Visitor::visit( CompoundLiteralExpr *compLitExpr ) {
[906e24d]327 maybeAccept( compLitExpr->get_result(), *this );
[630a82a]328 maybeAccept( compLitExpr->get_initializer(), *this );
329}
330
[8688ce1]331void Visitor::visit( RangeExpr *rangeExpr ) {
332 maybeAccept( rangeExpr->get_low(), *this );
333 maybeAccept( rangeExpr->get_high(), *this );
334}
335
[907eccb]336void Visitor::visit( UntypedTupleExpr *tupleExpr ) {
337 maybeAccept( tupleExpr->get_result(), *this );
338 acceptAll( tupleExpr->get_exprs(), *this );
339}
340
[6eb8948]341void Visitor::visit( TupleExpr *tupleExpr ) {
[aa8f9df]342 maybeAccept( tupleExpr->get_result(), *this );
[6eb8948]343 acceptAll( tupleExpr->get_exprs(), *this );
344}
345
[3b58d91]346void Visitor::visit( TupleIndexExpr *tupleExpr ) {
[aa8f9df]347 maybeAccept( tupleExpr->get_result(), *this );
[3b58d91]348 maybeAccept( tupleExpr->get_tuple(), *this );
349}
350
[6eb8948]351void Visitor::visit( TupleAssignExpr *assignExpr ) {
[aa8f9df]352 maybeAccept( assignExpr->get_result(), *this );
[d5556a3]353 maybeAccept( assignExpr->get_stmtExpr(), *this );
[3b58d91]354}
355
[6eb8948]356void Visitor::visit( StmtExpr *stmtExpr ) {
[aa8f9df]357 maybeAccept( stmtExpr->get_result(), *this );
[6eb8948]358 maybeAccept( stmtExpr->get_statements(), *this );
[d5556a3]359 acceptAll( stmtExpr->get_returnDecls(), *this );
360 acceptAll( stmtExpr->get_dtors(), *this );
[3b58d91]361}
362
[3c13c03]363void Visitor::visit( UniqueExpr *uniqueExpr ) {
364 maybeAccept( uniqueExpr->get_result(), *this );
365 maybeAccept( uniqueExpr->get_expr(), *this );
366}
367
[e4d829b]368void Visitor::visit( UntypedInitExpr * initExpr ) {
369 maybeAccept( initExpr->get_result(), *this );
370 maybeAccept( initExpr->get_expr(), *this );
371 // not currently visiting initAlts, but this doesn't matter since this node is only used in the resolver.
372}
373
374void Visitor::visit( InitExpr * initExpr ) {
375 maybeAccept( initExpr->get_result(), *this );
376 maybeAccept( initExpr->get_expr(), *this );
377 maybeAccept( initExpr->get_designation(), *this );
378}
379
[e994912]380
[0dd3a2f]381void Visitor::visit( VoidType *voidType ) {
382 acceptAll( voidType->get_forall(), *this );
[51b73452]383}
384
[0dd3a2f]385void Visitor::visit( BasicType *basicType ) {
386 acceptAll( basicType->get_forall(), *this );
[51b73452]387}
388
[0dd3a2f]389void Visitor::visit( PointerType *pointerType ) {
390 acceptAll( pointerType->get_forall(), *this );
[ce8c12f]391 // xxx - should PointerType visit/mutate dimension?
[0dd3a2f]392 maybeAccept( pointerType->get_base(), *this );
[51b73452]393}
394
[0dd3a2f]395void Visitor::visit( ArrayType *arrayType ) {
396 acceptAll( arrayType->get_forall(), *this );
397 maybeAccept( arrayType->get_dimension(), *this );
398 maybeAccept( arrayType->get_base(), *this );
[51b73452]399}
400
[ce8c12f]401void Visitor::visit( ReferenceType *refType ) {
402 acceptAll( refType->get_forall(), *this );
403 maybeAccept( refType->get_base(), *this );
404}
405
[0dd3a2f]406void Visitor::visit( FunctionType *functionType ) {
407 acceptAll( functionType->get_forall(), *this );
408 acceptAll( functionType->get_returnVals(), *this );
409 acceptAll( functionType->get_parameters(), *this );
[51b73452]410}
411
[1e1e15b]412void Visitor::handleReferenceToType( ReferenceToType *aggregateUseType ) {
[0dd3a2f]413 acceptAll( aggregateUseType->get_forall(), *this );
414 acceptAll( aggregateUseType->get_parameters(), *this );
[51b73452]415}
416
[0dd3a2f]417void Visitor::visit( StructInstType *aggregateUseType ) {
[1e1e15b]418 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b73452]419}
420
[0dd3a2f]421void Visitor::visit( UnionInstType *aggregateUseType ) {
[1e1e15b]422 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b73452]423}
424
[0dd3a2f]425void Visitor::visit( EnumInstType *aggregateUseType ) {
[1e1e15b]426 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b73452]427}
428
[4040425]429void Visitor::visit( TraitInstType *aggregateUseType ) {
[1e1e15b]430 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[0dd3a2f]431 acceptAll( aggregateUseType->get_members(), *this );
[51b73452]432}
433
[0dd3a2f]434void Visitor::visit( TypeInstType *aggregateUseType ) {
[1e1e15b]435 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b73452]436}
437
[0dd3a2f]438void Visitor::visit( TupleType *tupleType ) {
439 acceptAll( tupleType->get_forall(), *this );
440 acceptAll( tupleType->get_types(), *this );
[62423350]441 acceptAll( tupleType->get_members(), *this );
[51b73452]442}
443
[0dd3a2f]444void Visitor::visit( TypeofType *typeofType ) {
445 assert( typeofType->get_expr() );
446 typeofType->get_expr()->accept( *this );
[51b73452]447}
448
[0dd3a2f]449void Visitor::visit( AttrType *attrType ) {
450 if ( attrType->get_isType() ) {
451 assert( attrType->get_type() );
452 attrType->get_type()->accept( *this );
453 } else {
454 assert( attrType->get_expr() );
455 attrType->get_expr()->accept( *this );
456 } // if
[51b73452]457}
458
[44b7088]459void Visitor::visit( VarArgsType *varArgsType ) {
460 acceptAll( varArgsType->get_forall(), *this );
461}
462
[89e6ffc]463void Visitor::visit( ZeroType *zeroType ) {
464 acceptAll( zeroType->get_forall(), *this );
465}
466
467void Visitor::visit( OneType *oneType ) {
468 acceptAll( oneType->get_forall(), *this );
469}
470
[e4d829b]471void Visitor::visit( Designation * designation ) {
472 acceptAll( designation->get_designators(), *this );
473}
[e994912]474
[0dd3a2f]475void Visitor::visit( SingleInit *singleInit ) {
476 singleInit->get_value()->accept( *this );
[51b73452]477}
478
[0dd3a2f]479void Visitor::visit( ListInit *listInit ) {
[e4d829b]480 acceptAll( listInit->get_designations(), *this );
[0dd3a2f]481 acceptAll( listInit->get_initializers(), *this );
[51b73452]482}
483
[71f4e4f]484void Visitor::visit( ConstructorInit *ctorInit ) {
485 maybeAccept( ctorInit->get_ctor(), *this );
[d5556a3]486 maybeAccept( ctorInit->get_dtor(), *this );
[71f4e4f]487 maybeAccept( ctorInit->get_init(), *this );
488}
489
[e994912]490
[b3c36f4]491void Visitor::visit( __attribute__((unused)) Subrange *subrange ) {}
[51b73452]492
[e994912]493
[b3c36f4]494void Visitor::visit( __attribute__((unused)) Constant *constant ) {}
[0dd3a2f]495// Local Variables: //
496// tab-width: 4 //
497// mode: c++ //
498// compile-command: "make install" //
499// End: //
Note: See TracBrowser for help on using the repository browser.