API-CHANGES.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950
  1. 0.23.0:
  2. * Namespace change: amber_core => amber/core.
  3. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  4. + SmalltalkImage >>
  5. + beClean
  6. + amber/helpers exports >>
  7. + beClean
  8. + amber/boot api
  9. + setInstanceVariables(klass, arrayOfNames)
  10. 0.22.4:
  11. * Remove class IndexableCollection, trait TKeyValueCollection.
  12. * Merge CharacterArray class into String class
  13. * Deprecate CharacterArray class
  14. * Deprecate Collection >> copyWithAll:, #, is enough.
  15. + amber/helpers exports
  16. + loadPackages
  17. - Array >>
  18. - numericallyIndexable
  19. - Set
  20. - detect:ifNone: (pushed up to Collection)
  21. - SequenceableCollection
  22. - numericallyIndexable
  23. - String >>
  24. - numericallyIndexable
  25. 0.22.1:
  26. + BlockClosure >>
  27. + provided
  28. + Class >>
  29. + provided
  30. 0.22.0:
  31. * Deprecate Exception >> resignal. Should have been #pass.
  32. + Compiler >>
  33. + ast:forClass:protocol:
  34. + cleanCodeGenerator
  35. + codeGenerator
  36. + forClass:protocol:
  37. + Exception
  38. + outer
  39. + pass
  40. + JSObjectProxy >>
  41. + removeKey:
  42. + Number >>
  43. + ln1p
  44. + SmalltalkImage >>
  45. + postLoad
  46. - AmberBootstrapInitialization class >>
  47. - initializeClasses
  48. - ClassBuilder >>
  49. - setupClass:
  50. - Compiler >>
  51. - compileNode:forClass:package:
  52. - ProtoObject
  53. - asJSON
  54. - asJavascript
  55. - SmalltalkImage >>
  56. - packageAt:
  57. - amber/boot api >>
  58. - nextId
  59. 0.21.1:
  60. + ClassBuilder >>
  61. + class:instanceVariables:
  62. + JSObjectProxy class >>
  63. + null
  64. + undefined
  65. - ClassBuilder >>
  66. - basicClass:instanceVariableNames:
  67. 0.21.0:
  68. * Deprecate SmalltalkImage >> existsJsGlobal:
  69. + Number >>
  70. + bitAnd:
  71. + bitNot
  72. + bitOr:
  73. + bitXor:
  74. + printStringBase:
  75. + Platform class >>
  76. + includesGlobal:
  77. 0.20.0:
  78. * Internal kernel fields naming changes.
  79. + amber/boot api >>
  80. + traitsOrClasses
  81. - SmalltalkImage >>
  82. - legacyGlobalJsVariables
  83. - amber/boot >>
  84. - nil
  85. - dnu
  86. - amber/boot api >>
  87. - classes
  88. 0.19.1:
  89. * Deprecate amber/boot api nextId, prop globalJsVariables.
  90. * Deprecate ProtoObject >> identityHash.
  91. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  92. + AmberBootstrapInitialization class >>
  93. + run
  94. + initializeClasses
  95. + organizeClasses
  96. + organizeMethods
  97. + Behavior >>
  98. + basicOrganization
  99. + basicOrganization:
  100. + ClassOrganizer >>
  101. + theClass
  102. + ClassOrganizer class >>
  103. + on:
  104. + Compiler class >>
  105. + eval:
  106. + JavaScriptException >>
  107. + shouldBeStubbed
  108. + wrap
  109. + Message class >>
  110. + selector:arguments:notUnderstoodBy:
  111. + MethodContext >>
  112. + stubHere
  113. + stubToAtMost:
  114. + NonBooleanReceiver class >>
  115. + signalOn:
  116. + Package >>
  117. + evalBlock
  118. + evalBlock:
  119. + Package class >>
  120. + named:javaScriptDescriptor:
  121. + SmalltalkImage >>
  122. + packageDictionary
  123. + packageAt:ifPresent:
  124. + TBehaviorProvider >>
  125. + methodOrganizationEnter:andLeave:
  126. + TMasterBehavior >>
  127. + definedMethods
  128. + enterOrganization
  129. + leaveOrganization
  130. + Trait >>
  131. + basicOrganization
  132. + basicOrganization:
  133. + UndefinedObject >>
  134. + ==
  135. + Number >>
  136. + min:max:
  137. + degreesToRadians
  138. + radiansToDegrees
  139. + arcTan:
  140. + between:and:
  141. + Number class >>
  142. + radiansPerDegree
  143. + Point >>
  144. + dotProduct:
  145. + normal
  146. + angle
  147. + normalized
  148. + r
  149. + corner:
  150. + extent:
  151. + rectangle:
  152. + Rectangle >>
  153. + =
  154. + corner
  155. + origin
  156. + containsPoint:
  157. + containsRect:
  158. + printOn:
  159. + Rectangle class >>
  160. + origin:corner:
  161. + origin:extent:
  162. + point:point:
  163. - Package >>
  164. - basicName:
  165. - basicImports
  166. - ProtoObject >>
  167. - isSameInstanceAs:
  168. - ObjectTest >>
  169. - testIdentityHash
  170. - amber/boot api >>
  171. - reservedWords (with the hope no one uses it directly)
  172. 0.19.0:
  173. * Remove class Thenable, add trait TThenable.
  174. * Behavior / Trait hierarchy uses traits.
  175. + NativeFunction class >>
  176. + isNativeFunction:
  177. + IRInstructions >>
  178. + isSelf
  179. + isSuper
  180. + IRVariable >>
  181. + isSelf
  182. + isSuper
  183. + ScopeVar >>
  184. + isSelf
  185. + isSuper
  186. + PseudoVar >>
  187. + isSelf
  188. + isSuper
  189. +UndefinedObject >>
  190. + identityHash
  191. + value
  192. + amber/boot >>
  193. + nilAsValue
  194. - IRSend >>
  195. - isSuperSend
  196. 0.18.3:
  197. * Move {add,remove}Element from Array.prototype to kernel API.
  198. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  199. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  200. * Add class Trait as subclass of BehaviorBody.
  201. * Add class TraitTransformation.
  202. * Deprecate #asJSON in favour of #asJavaScriptObject.
  203. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  204. + BehaviorBody >>
  205. + setTraitComposition:
  206. + traitCompositionDefinition
  207. + traitUsers
  208. + allSubclassesDo:
  209. + superclass
  210. + Trait >>
  211. + allInstanceVariableNames
  212. + allSubclassesDo:
  213. + asJavascript
  214. + asTraitComposition
  215. + category
  216. + classTag
  217. + definition
  218. + package
  219. + superclass
  220. + theMetaClass
  221. + theNonMetaClass
  222. + exportBehaviorDefinitionTo:using:
  223. + traitUsers
  224. + package:
  225. + Trait class >>
  226. + named:package:
  227. + named:uses:package:
  228. + TraitTransformation >>
  229. + -
  230. + @
  231. + addAliases:
  232. + addExclusions:
  233. + aliases
  234. + asJSON
  235. + asJavascript
  236. + asTraitComposition
  237. + asTraitTransformation
  238. + definition
  239. + exclusions
  240. + initialize
  241. + postCopy
  242. + trait
  243. + trait:
  244. + Collection >>
  245. + copyWithout:
  246. + SequenceableCollection >>
  247. + reverseDo:
  248. + Array >>
  249. + asTraitComposition
  250. + amber/boot api >>
  251. + addElement
  252. + removeElement
  253. + wrapJavaScript
  254. + CharacterArray >>
  255. + asSymbolPrintOn:
  256. + symbolPrintString
  257. + String >>
  258. + isSelector
  259. + StringStream >>
  260. + print:
  261. + printSymbol:
  262. + Package >>
  263. + traitCompositions
  264. + Class >>
  265. + subClass:
  266. + subClass:uses:
  267. + subClass:uses:instanceVariables:
  268. + subClass:uses:instanceVariables:category:
  269. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  270. + subClass:uses:instanceVariables:package:
  271. + UndefinedObject >>
  272. + subClass:
  273. + subClass:uses:
  274. + subClass:uses:instanceVariables:
  275. + subClass:uses:instanceVariables:category:
  276. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  277. + subClass:uses:instanceVariables:package:
  278. + Metaclass >>
  279. + uses:instanceVariableNames:
  280. - Association >>
  281. - importsString
  282. - String >>
  283. - importsString
  284. - AbstractExporter
  285. - classNameFor:
  286. - Exporter >>
  287. - jsClassNameFor:
  288. 0.18.2:
  289. * Add Platform-DOM package with DOM-related stuff.
  290. * Platform-DOM not loaded by default. Packages that will use it will import it.
  291. + PlatformDom class >>
  292. + isFeasible
  293. + isDomNode:
  294. + newCustomEvent:detail:
  295. + toArray:
  296. + CharacterArray >>
  297. + asDomNode
  298. + Collection >>
  299. + asDomNode
  300. + JSObjectProxy >>
  301. + asDomNode
  302. + String >>
  303. + htmlTextContent
  304. 0.18.1:
  305. + ASTNode >>
  306. + withTail:
  307. - SendNode >>
  308. - valueWithReceiver:
  309. 0.18.0:
  310. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  311. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  312. * Some internal API changes in Compiler-* (including the move to DAG-node).
  313. - Object >>
  314. - throw:
  315. 0.17.0:
  316. * Remove classes InterfacingObject, PlatformInterface.
  317. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  318. + amber/boot >>
  319. + nilAsReceiver
  320. - NativeFunction class >>
  321. - constructor:
  322. - constructor:value:
  323. - constructor:value:value:
  324. - constructor:value:value:value:
  325. 0.16.1:
  326. * Deprecate $boot.dnu (use $boot.nilAsClass).
  327. + amber/boot >>
  328. + nilAsClass
  329. 0.16.0:
  330. * Deprecate ClassBuilder >> setupClass:
  331. * $core.initialize now returns a Promise
  332. * $core.addClass now returns the class
  333. + amber/boot api >>
  334. + send2
  335. + traverseClassTree
  336. + Promise class >>
  337. + new
  338. - amber/boot api >>
  339. - wrapClassName
  340. - send
  341. - allSubclasses
  342. - AbstractCodeGenerator >>
  343. - classNameFor:
  344. 0.15.1:
  345. * Thenable class added
  346. * Promise class added, wraps JS Promise, subclass of Thenable
  347. + Thenable >>
  348. + catch:
  349. + on:do:
  350. + on:do:catch:
  351. + then:
  352. + then:catch:
  353. + then:on:do:
  354. + then:on:do:catch:
  355. + JSObjectProxy >>
  356. + catch:
  357. + on:do:
  358. + on:do:catch:
  359. + then:
  360. + then:catch:
  361. + then:on:do:
  362. + then:on:do:catch:
  363. + amber/boot api >>
  364. + seamless
  365. + Promise class >>
  366. + new:
  367. + forBlock:
  368. + value:
  369. + signal:
  370. + all:
  371. + any:
  372. 0.14.18:
  373. * Some internal API changes in Compiler-*.
  374. 0.14.14:
  375. * InterfacingObject >> ajax: deprecated
  376. * PlatformInterface class deprecated
  377. * Class BrowserInterface removed
  378. * Class Terminal, BrowserTerminal added
  379. * Class Platform, BrowserPlatform added
  380. + Environment >>
  381. + renamePackage:to:
  382. + Platform class >>
  383. + globals
  384. + newXhr
  385. + Terminal class >>
  386. + alert:
  387. + confirm:
  388. + prompt:
  389. + prompt:default:
  390. SmalltalkImage >>
  391. + existsJsGlobal:
  392. - PlatformInterface class >>
  393. - initialize
  394. - setWorker:
  395. 0.14.12:
  396. + JSObjectProxy >>
  397. + putOn:
  398. + ProtoStream >>
  399. + nextPutJSObject:
  400. 0.14.11:
  401. * Basic streaming protocol extracted from Stream to ProtoStream
  402. + Object >>
  403. + in:
  404. + JSObjectProxy >>
  405. + in:
  406. 0.14.10:
  407. + JSObjectProxy class >>
  408. + addObjectVariablesTo:ofProxy:
  409. + compareJSObjectOfProxy:withProxy:
  410. + forwardMessage:withArguments:ofProxy:
  411. + jsObject:ofProxy:
  412. + lookupProperty:ofProxy:
  413. - JSObjectProxy >>
  414. - jsObject:
  415. - lookupProperty:
  416. - compareJSObjectWith:
  417. - addObjectVariablesTo:
  418. - forwardMessage:withArguments:
  419. 0.14.4:
  420. + AmdExporter >>
  421. + importsForOutput:
  422. + AbstractCodeGenerator >>
  423. + currentPackage
  424. + currentPackage:
  425. + Compiler >>
  426. + currentPackage
  427. + currentPackage:
  428. + compile:forClass:protocol:
  429. + compileNode:forClass:package:
  430. + SemanticAnalyzer >>
  431. + thePackage
  432. + thePackage:
  433. + isVariableUndefined:inPackage:
  434. - Compiler >>
  435. - compile:
  436. - compile:forClass:
  437. - compileExpression:
  438. - SemanticAnalyzer >>
  439. - isVariableGloabllyUndefined:
  440. - Behavior >>
  441. - compile:
  442. 0.14.3:
  443. * #heliosClass is now #classTag
  444. + Compiler >>
  445. + eval:forPackage:
  446. + Behavior >>
  447. + packageOfProtocol:
  448. + Exporter >>
  449. + exportPackageContextOf:on:
  450. + exportPackageImportsOf:on:
  451. + Package >>
  452. + basicImports
  453. + imports
  454. + imports:
  455. + importsDefinition
  456. + importsFromJson:
  457. + importsAsJson
  458. + sortedImportsAsArray
  459. + validateImports:
  460. + Package class >>
  461. + named:imports:transport:
  462. + Association >>
  463. + importsString
  464. + String >>
  465. + importsString
  466. + ProtoObject >>
  467. + ifNil:
  468. + ifNil:ifNotNil:
  469. + ifNotNil:
  470. + ifNotNil:ifNil:
  471. + isNil
  472. + notNil
  473. - Object >>
  474. - ifNil:
  475. - ifNil:ifNotNil:
  476. - ifNotNil:
  477. - ifNotNil:ifNil:
  478. - isNil
  479. - notNil
  480. 0.14.1:
  481. * NativeFunction class >> constructor:[value:...] deprecated
  482. + NativeFunction class >>
  483. + constructorNamed:
  484. + constructorNamed:value:
  485. + constructorNamed:value:value:
  486. + constructorNamed:value:value:value:
  487. + constructorOf:
  488. + constructorOf:value:
  489. + constructorOf:value:value:
  490. + constructorOf:value:value:value:
  491. + functionNamed:
  492. + functionNamed:value:
  493. + functionNamed:value:value:
  494. + functionNamed:value:value:value:
  495. + functionNamed:valueWithArgs:
  496. + functionOf:
  497. + functionOf:value:
  498. + functionOf:value:value:
  499. + functionOf:value:value:value:
  500. + functionOf:valueWithArgs:
  501. + methodOf:this:
  502. + methodOf:this:value:
  503. + methodOf:this:value:value:
  504. + methodOf:this:value:value:value:
  505. + methodOf:this:valueWithArgs:
  506. + SmalltalkImage >>
  507. + optOut:
  508. + cancelOptOut:
  509. 0.14.0:
  510. + Object >>
  511. + asJQuery
  512. + asJQueryInContext:
  513. + BlockClosure >>
  514. + asJQuery
  515. + asJQueryInContext:
  516. - AnnouncementSubscription >>
  517. - block
  518. - block:
  519. - Collection >>
  520. - contains:
  521. - String >>
  522. - asSelector
  523. - asJavaScriptSelector
  524. - SmalltalkImage >>
  525. - at:
  526. - at:ifAbsent:
  527. - at:put:
  528. - current
  529. - vm
  530. - createPackage:properties:
  531. - MethodContext >>
  532. - temps
  533. - Object >>
  534. - try:catch:
  535. 0.13.2:
  536. + SourceArea class >>
  537. + codeMirror
  538. 0.13.1:
  539. * String >> asSelector is now String >> asJavaScriptMethodName
  540. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  541. * smalltalk.selector is now smalltalk.st2js
  542. * smalltalk.convertSelector is now smalltalk.js2st
  543. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  544. * Smalltalk vm is now Smalltalk core
  545. * boot.js's .vm is now .api
  546. * amber load sets' .vm is now .api
  547. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  548. + smalltalk.
  549. + accessJavaScript
  550. + Object >>
  551. + postMessageTo:
  552. + postMessageTo:origin:
  553. + Class >>
  554. + heliosClass
  555. + SmalltalkImage >>
  556. + core
  557. + amber/boot
  558. + api
  559. + amber/{devel,deploy,lang} exports
  560. + api
  561. - ProtoObject class >>
  562. - heliosClass
  563. - Object class >>
  564. - heliosClass
  565. - amber/boot
  566. - vm
  567. 0.12.6:
  568. + String >>
  569. + value:
  570. + ProtocolAnnouncement >>
  571. + package
  572. + Behavior >>
  573. + isTestClass
  574. + Package >>
  575. + isTestPackage
  576. + amber/{devel,deploy,lang} exports
  577. + nil
  578. + amber/helpers exports
  579. + nil
  580. 0.12.4:
  581. * Package Canvas renamed to Web
  582. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  583. + Announcer >>
  584. + on:do:for:
  585. + Node >>
  586. + navigationNodeAt:ifAbsent:
  587. + BlockClosure >>
  588. + tryCatch:
  589. + Environment >>
  590. + evaluate:for:
  591. + AmberCli >>
  592. + version:
  593. + Object >>
  594. + deprecatedAPI:
  595. - Environment >>
  596. - eval:on:
  597. - evaluateString:on:
  598. 0.12.3:
  599. * Package Import-Export renamed to Kernel-ImportExport
  600. * A dozen of methods moved from Object to ProtoObject
  601. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  602. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  603. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  604. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  605. * Smalltalk current deprecated in favour of Smalltalk
  606. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  607. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  608. + CompiledMethod >>
  609. + defaultProtocol
  610. + Behavior >>
  611. + compile:protocol:
  612. + removeProtocolIfEmpty:
  613. + Package >>
  614. + load
  615. + loadFromNamespace:
  616. + Package class >>
  617. + load:
  618. + load:fromNamespace:
  619. + PackageTransport >> load
  620. + PackageHandler >> load:
  621. + AmdPackageHandler >> load:
  622. + Set >> removeAll
  623. + AssociativeCollection class
  624. + BucketStore class
  625. + SmalltalkImage >>
  626. + globals
  627. + vm
  628. + settings
  629. + Setting class
  630. + String >>
  631. + asSetting
  632. + asSettingIfAbsent:
  633. + settingValue
  634. + settingValueIfAbsent:
  635. + settingValue:
  636. + Smalltalk global variable
  637. - CompiledMethod >>
  638. - category: (use #protocol:)
  639. - defaultCategory
  640. - Behavior >> compile:category:
  641. - HTMLCanvas class >>
  642. - browserVersion
  643. - isMSIE
  644. - isMozilla
  645. - isOpera
  646. - isWebkit
  647. 0.12.2:
  648. * Collection >> contains: is deprecated in favor of anySatisfy:
  649. + Announcer >> on:doOnce:
  650. + String >>
  651. + uriEncoded
  652. + uriDecoded
  653. + uriComponentEncoded
  654. + uriComponentDecoded
  655. + Collection >>
  656. + removeAll
  657. + ifEmpty:ifNotEmpty:
  658. + ifNotEmpty:ifEmpty:
  659. + anyOne
  660. + noneSatisfy:
  661. + anySatisfy:
  662. + allSatisfy:
  663. 0.12.0:
  664. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  665. * Existing classes moved to new KernelInfrastructure package
  666. * ImporterExporter
  667. * are now StreamExporters
  668. * aware of AMD namespaces
  669. * support transport types and commit channels
  670. + Node >>
  671. + nextChild
  672. + method
  673. + postCopy
  674. + isCascadeNode
  675. + isLastChild
  676. + BlockNode >>
  677. + nextNode:
  678. + nextChild
  679. + SendNode >>
  680. + isCascadeSendNode
  681. + shouldBeAliased
  682. + CompiledMethod >> sendTo:arguments:
  683. + Array >>
  684. + addFirst:
  685. + removeLast
  686. + Number >>
  687. + ceiling
  688. + floor
  689. + asNumber
  690. + //
  691. + cos
  692. + sin
  693. + tan
  694. + arcCos
  695. + arcSin
  696. + arcTan
  697. + log
  698. + log:
  699. + raisedTo:
  700. + sign
  701. + **
  702. + ln
  703. + e
  704. + String class >> esc
  705. + String >>
  706. + asMutator
  707. + capitalized
  708. + isCapitalized
  709. + JSProxy >> printString
  710. + Behavior >>
  711. + ownProtocols
  712. + ownMethods
  713. + JSStream >> nextPutSendIndexFor:
  714. + InterfacingObject class
  715. + Interpreter class
  716. + DocumentFragmentTag class
  717. + AbstractExporter class
  718. + PlatformInterface class
  719. - Node >> extent
  720. - JSStream >> nextPutStatement:with:
  721. - Smalltalk.installSuperclass()
  722. - ClassReferenceNode class (now handled via VariableNode)
  723. 0.11.0:
  724. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  725. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  726. * Object>>printString
  727. * replace >>printString with >>printOn:
  728. * replace >>storeString with >>printString
  729. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  730. * Package>>fetch: is now Package>>load:
  731. * Package>>fetch:prefix: is now Package>>load:prefix:
  732. * Queue>>front replaced by Queue>>next
  733. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  734. * Queue>>back: replaced by Queue>>nextPut:
  735. * smalltalk.addMethod() does not use explicit JS selector
  736. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  737. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  738. * String>>asJavaScriptSelector moved to Kernel-Objects package
  739. + Object>>asString
  740. + Object>>putOn:
  741. + String>>isVowel
  742. + Collection>>putOn:
  743. + CharacterArray>>putOn:
  744. + Stream>><<
  745. + Stream>>write
  746. + SequenceableCollection>>newStream
  747. + SequenceableCollection>>readStream
  748. + SequenceableCollection>>stream
  749. + SequenceableCollection>>streamClass
  750. + SequenceableCollection>>writeStream
  751. + Collection>>isImmutable
  752. + Stream>>nextPutString:
  753. + StringStream>>nextPutString:
  754. + JSStream>>nextPutClassRefFunction:
  755. + String>>crlfSanitized
  756. + inlined Block now also responds to >>value:
  757. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  758. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  759. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  760. + Parser: Symbols for binarie selectores
  761. + Package>>commit
  762. + AIContext>>initializeLocals
  763. + ASTInterpreter>>withBlockContext:
  764. + smalltalk.allSelectors()
  765. + Object>>isCompiledMethod
  766. + Object>>isPackage
  767. + Object>>isBehavior
  768. + ClassMoved Announcemen class
  769. + Behavior>>includesBehavior:
  770. + Environment>>classes
  771. + Environment>>allSelectors
  772. + Environment>>removeProtocol:
  773. + Environment>>renameProtocol:to:in:
  774. + CompiledMethod>>protocol:
  775. + Smalltalk>>globalJsVariables
  776. + Smalltalk>>addGlobalJsVariable:
  777. + Smalltalk>>deleteGlobalJsVariable:
  778. - Object>>storeOn:
  779. - Object>>log:block:
  780. - Object>>printNl
  781. - Compiler-IR.st >>javascriptSelector
  782. - Compiler-IR.st >>nextPutVar:
  783. - Kernel-Collections.st >>asSuperSelector
  784. - Collection>>readStream
  785. - Collection>>stream
  786. - Collection>>streamClass
  787. - Collection>>writeStream
  788. - Symbol class (replaced with String)
  789. - IRInlinedNonLocalReturn class
  790. - IRInlinedSend>>nonLocalReturnInliner
  791. - IRNonLocalReturnInliner class
  792. - Package>>dependencies
  793. - Package>>dependencies:
  794. - Package>>properties
  795. - Package>>jsProperties
  796. - Package>>jsProperties:
  797. - Package>>propertiesAsJSON
  798. - Package>>propertyAt:
  799. - Package>>propertyAt:ifAbsent:
  800. - Package>>propertyAt:put:
  801. - Browser>>ajaxPutAt:data: